index.d.ts 222 B

123456789
  1. import type { AsyncFunction } from 'async-function';
  2. declare namespace isAsyncFunction {
  3. export type { AsyncFunction };
  4. }
  5. declare function isAsyncFunction(fn: unknown): fn is AsyncFunction;
  6. export = isAsyncFunction;