Newer
Older
FanFarm / system / V3fanfarm-ubuntu-local / V3fanfarm-frontend / node_modules / is-async-function / index.d.ts
import type { AsyncFunction } from 'async-function';

declare namespace isAsyncFunction {
    export type { AsyncFunction };
}

declare function isAsyncFunction(fn: unknown): fn is AsyncFunction;

export = isAsyncFunction;