index.d.ts 212 B

1234
  1. import { Stats } from 'fs';
  2. export type Caller = (relPath: string, absPath: string, stats: Stats) => any;
  3. declare function totalist(dir: string, callback: Caller, prefix?: string): void;
  4. export default totalist;