1 | import type { IAsyncReader } from '../readers';
|
2 | import type { Entry, ErrnoException } from '../types';
|
3 | export type AsyncCallback = (error: ErrnoException | null, entries: Entry[]) => void;
|
4 | export declare class AsyncProvider {
|
5 | #private;
|
6 | constructor(reader: IAsyncReader);
|
7 | read(root: string, callback: AsyncCallback): void;
|
8 | }
|