blob: 515f3cbc9cb2039e5495da5490b04492a359af41 [file] [log] [blame] [edit]
import type { AsyncFunction } from 'async-function';
declare namespace isAsyncFunction {
export type { AsyncFunction };
}
declare function isAsyncFunction(fn: unknown): fn is AsyncFunction;
export = isAsyncFunction;