UNPKG

memfs

Version:

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

7 lines (6 loc) 199 B
import type { CrudApi } from '../types'; export type Setup = () => { crud: CrudApi; snapshot: () => Record<string, string | null>; }; export declare const testCrudfs: (setup: Setup) => void;