1 | import { Settings } from './settings';
|
2 | import type { Options } from './settings';
|
3 | import type { AsyncCallback, Entry } from './types';
|
4 | export declare function scandir(path: string, callback: AsyncCallback): void;
|
5 | export declare function scandir(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void;
|
6 | export declare namespace scandir {
|
7 | function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise<Entry[]>;
|
8 | }
|
9 | export declare function scandirSync(path: string, optionsOrSettings?: Options | Settings): Entry[];
|