File size: 195 Bytes
bc20498 |
1 2 3 4 |
import { Stats } from 'fs';
export type Caller = (relPath: string, absPath: string, stats: Stats) => any;
export function totalist(dir: string, callback: Caller, prefix?: string): Promise<void>;
|