index.d.ts 846 B

12345678910111213141516
  1. export { Volume, StatWatcher, FSWatcher, toUnixTimestamp } from './volume';
  2. export type { IWriteStream, IError, IAppendFileOptions, IWatchFileOptions, IWatchOptions } from './volume';
  3. export { default as Stats, TStatNumber } from './Stats';
  4. export { default as Dirent } from './Dirent';
  5. export { default as StatFs } from './StatFs';
  6. export { FileHandle } from './FileHandle';
  7. export { Dir } from './Dir';
  8. export { FsPromises } from './FsPromises';
  9. export * from './options';
  10. export * from './util';
  11. export * from './glob';
  12. export { fsCallbackApiList } from './lists/fsCallbackApiList';
  13. export { fsSynchronousApiList } from './lists/fsSynchronousApiList';
  14. export { fsCommonObjectsList } from './lists/fsCommonObjectsList';
  15. export type { FsCommonObjects } from './types/FsCommonObjects';
  16. export type { FsPromisesApi } from './types/FsPromisesApi';