e871137131efab1eb3def30f7b2875c4c8714a2814911e3e476ec7a105f19353f976df8eae03353f634866e776c79a97d6b28ce20a9723dbf7750d2e8fc1a5 177 B

123456789
  1. export type Callback = (
  2. directory: string,
  3. files: string[],
  4. ) => string | false | void;
  5. export default function (
  6. directory: string,
  7. callback: Callback,
  8. ): string | void;