MES手机端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
236 B

  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>;