index.d.ts 263 B

12345678
  1. import type { FsSynchronousApi } from '../node/types';
  2. export declare const toTreeSync: (fs: FsSynchronousApi, opts?: ToTreeOptions) => string;
  3. export interface ToTreeOptions {
  4. dir?: string;
  5. tab?: string;
  6. depth?: number;
  7. separator?: '/' | '\\';
  8. }