UNPKG

@forabi/memfs

Version:

In-memory file-system with Node's fs API.

11 lines (10 loc) 299 B
export interface IProcess { getuid(): number; getgid(): number; cwd(): string; platform: string; nextTick: (callback: (...args) => void, ...args) => void; } export declare function createProcess(p?: IProcess): IProcess; declare const _default: IProcess; export default _default;