Files
knaeckeboot-eu/themes/bluewater/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts
T
Konstantin Kollar 8529ee86e4 Initial commit
2022-10-03 21:13:35 +02:00

8 lines
524 B
TypeScript

/// <reference types="node" />
import type Settings from '../settings';
import type { Entry } from '../types';
export declare type AsyncCallback = (error: NodeJS.ErrnoException, entries: Entry[]) => void;
export declare function read(directory: string, settings: Settings, callback: AsyncCallback): void;
export declare function readdirWithFileTypes(directory: string, settings: Settings, callback: AsyncCallback): void;
export declare function readdir(directory: string, settings: Settings, callback: AsyncCallback): void;