版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

5 líneas
274 B

  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;