UNPKG

274 BTypeScriptView Raw
1import type Settings from '../settings';
2import type { ErrnoException, Stats } from '../types';
3export declare type AsyncCallback = (error: ErrnoException, stats: Stats) => void;
4export declare function read(path: string, settings: Settings, callback: AsyncCallback): void;