node-ejs-renderer/node_modules/memfs/lib/print/index.d.ts

9 lines
263 B
TypeScript
Raw Permalink Normal View History

2024-06-09 13:55:01 -04:00
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?: '/' | '\\';
}