PosixFS.d.ts 420 B

123456789
  1. import { FakeFS } from './FakeFS';
  2. import { ProxiedFS } from './ProxiedFS';
  3. import { NativePath, PortablePath } from './path';
  4. export declare class PosixFS extends ProxiedFS<NativePath, PortablePath> {
  5. protected readonly baseFs: FakeFS<PortablePath>;
  6. constructor(baseFs: FakeFS<PortablePath>);
  7. protected mapFromBase(path: PortablePath): NativePath;
  8. protected mapToBase(path: NativePath): PortablePath;
  9. }