index.d.ts 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import * as constants from './constants';
  2. import * as statUtils from './statUtils';
  3. export { constants };
  4. export { LinkStrategy } from './algorithms/copyPromise';
  5. export { opendir, CustomDir } from './algorithms/opendir';
  6. export { statUtils };
  7. export { normalizeLineEndings } from './FakeFS';
  8. export type { CreateReadStreamOptions } from './FakeFS';
  9. export type { CreateWriteStreamOptions } from './FakeFS';
  10. export type { Dirent, Dir, SymlinkType } from './FakeFS';
  11. export type { MkdirOptions } from './FakeFS';
  12. export type { RmdirOptions } from './FakeFS';
  13. export type { WatchOptions } from './FakeFS';
  14. export type { WatchCallback } from './FakeFS';
  15. export type { Watcher } from './FakeFS';
  16. export type { WriteFileOptions } from './FakeFS';
  17. export type { ExtractHintOptions } from './FakeFS';
  18. export type { WatchFileOptions } from './FakeFS';
  19. export type { WatchFileCallback } from './FakeFS';
  20. export type { StatWatcher } from './FakeFS';
  21. export type { OpendirOptions } from './FakeFS';
  22. export type { Stats, BigIntStats } from './FakeFS';
  23. export { DEFAULT_COMPRESSION_LEVEL } from './ZipFS';
  24. export type { ZipCompression } from './ZipFS';
  25. export { PortablePath, Filename } from './path';
  26. export type { FSPath, Path, NativePath } from './path';
  27. export type { ParsedPath, PathUtils, FormatInputPathObject } from './path';
  28. export { npath, ppath, toFilename } from './path';
  29. export { AliasFS } from './AliasFS';
  30. export { FakeFS } from './FakeFS';
  31. export { CwdFS } from './CwdFS';
  32. export { JailFS } from './JailFS';
  33. export { LazyFS } from './LazyFS';
  34. export { NoFS } from './NoFS';
  35. export { NodeFS } from './NodeFS';
  36. export { PosixFS } from './PosixFS';
  37. export { ProxiedFS } from './ProxiedFS';
  38. export { VirtualFS } from './VirtualFS';
  39. export { ZipFS } from './ZipFS';
  40. export { ZipOpenFS } from './ZipOpenFS';
  41. export { patchFs, extendFs } from './patchFs/patchFs';
  42. export { xfs } from './xfs';
  43. export type { XFS } from './xfs';