Urara-Blog/node_modules/.pnpm-store/v3/files/69/8ad2108d3cd9549f91642d5b14dbada41d4597f314c3d5e208dc74177906decc45f4b5b79f18fa12cea4ae70c3faccd3bb4abbbd1de4844b6aa35d026cc846
2022-08-14 01:14:53 +08:00

4 lines
274 B
Text

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