/// /// /// import { URL } from 'url'; import { FakeFS } from './FakeFS'; import { ProxiedFS } from './ProxiedFS'; import { NativePath } from './path'; /** * Adds support for file URLs and Buffers to the wrapped `baseFs`, but *not* inside the typings. * * Only exists for compatibility with Node's behavior. * * Automatically wraps all FS instances passed to `patchFs` & `extendFs`. * * Don't use it! */ export declare class NodePathFS extends ProxiedFS { protected readonly baseFs: FakeFS; constructor(baseFs: FakeFS); protected mapFromBase(path: NativePath): NativePath; protected mapToBase(path: NativePath | URL | Buffer): string; }