25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

7 satır
295 B

  1. interface Options {
  2. throwNotFound?: boolean;
  3. }
  4. declare function readFile(filepath: string, options?: Options): Promise<string | null>;
  5. declare function readFileSync(filepath: string, options?: Options): string | null;
  6. export { readFile, readFileSync };
  7. //# sourceMappingURL=readFile.d.ts.map