UNPKG

memfs

Version:

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

7 lines (6 loc) 202 B
import type { Buffer } from './buffer'; import type { URL } from './url'; export type PathLike = string | Buffer | URL; export declare namespace symlink { type Type = 'dir' | 'file' | 'junction'; }