説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.d.ts 224B

123
  1. type Promisable<T> = T | Promise<T>;
  2. export type Callback = (directory: string, files: string[]) => Promisable<string | false | void>;
  3. export default function (directory: string, callback: Callback): Promise<string | void>;