index.d.mts 236 B

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