UNPKG

memfs

Version:

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

10 lines (9 loc) 283 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?: '/' | '\\'; sort?: boolean; }