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

util.d.ts 206B

123
  1. export declare type Constructor = new (...args: any[]) => any;
  2. export declare type Func = (...args: any[]) => any;
  3. export declare const instanceOfAny: (object: any, constructors: Constructor[]) => boolean;