web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
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