UNPKG

memfs

Version:

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

9 lines (8 loc) 263 B
import type { FsSynchronousApi } from '../node/types'; export declare const toTreeSync: (fs: FsSynchronousApi, opts?: ToTreeOptions) => string; export interface ToTreeOptions { dir?: string; tab?: string; depth?: number; separator?: '/' | '\\'; }