版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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