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.

12 lines
511 B

  1. /// <reference types="node" />
  2. import * as fs from 'fs';
  3. export declare type FileSystemAdapter = {
  4. lstat: typeof fs.lstat;
  5. stat: typeof fs.stat;
  6. lstatSync: typeof fs.lstatSync;
  7. statSync: typeof fs.statSync;
  8. readdir: typeof fs.readdir;
  9. readdirSync: typeof fs.readdirSync;
  10. };
  11. export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter;
  12. export declare function createFileSystemAdapter(fsMethods?: Partial<FileSystemAdapter>): FileSystemAdapter;
  13. //# sourceMappingURL=fs.d.ts.map