Files
lcbp3.np-dms.work/frontend/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts
2025-09-21 20:29:15 +07:00

8 lines
524 B
TypeScript
Executable File

/// <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;