UNPKG

memfs

Version:

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

9 lines (8 loc) 204 B
import type { PathLike } from '../node/types/misc'; export type TFileId = PathLike | number; export interface StatError { code: string; message: string; path?: string; toError(): Error; }