Files
2025-03-07 19:22:02 +01:00

9 lines
263 B
TypeScript

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?: '/' | '\\';
}