12345678910111213141516171819202122 |
- import { URL } from 'url';
- import { FakeFS } from './FakeFS';
- import { ProxiedFS } from './ProxiedFS';
- import { NativePath } from './path';
- export declare class NodePathFS extends ProxiedFS<NativePath, NativePath> {
- protected readonly baseFs: FakeFS<NativePath>;
- constructor(baseFs: FakeFS<NativePath>);
- protected mapFromBase(path: NativePath): NativePath;
- protected mapToBase(path: NativePath | URL | Buffer): string;
- }
|