Urara-Blog/node_modules/.pnpm-store/v3/files/d9/061ecf57bbb3e8a581279668392299170064bd286afe1b6645befad6cc019f83dc6cd41d1566ba9a96f405085ca6745afbf99d3a444a9b538f17225f50cd92
2022-08-14 01:14:53 +08:00

7 lines
524 B
Text

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