index.d.ts 186 B

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