You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
291 B

import { FsSynchronousApi } from '@jsonjoy.com/fs-node-utils';
export declare const toTreeSync: (fs: FsSynchronousApi, opts?: ToTreeOptions) => string;
export interface ToTreeOptions {
dir?: string;
tab?: string;
depth?: number;
separator?: '/' | '\\';
sort?: boolean;
}