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

index.d.ts 256B

1234567
  1. declare namespace setFunctionLength {
  2. type Func = (...args: unknown[]) => unknown;
  3. }
  4. declare function setFunctionLength<T extends setFunctionLength.Func = setFunctionLength.Func>(fn: T, length: number, loose?: boolean): T;
  5. export = setFunctionLength;