mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 04:38:15 +08:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
|
import type { AsyncFunction } from 'async-function';
|
||
|
|
||
|
declare namespace isAsyncFunction {
|
||
|
export type { AsyncFunction };
|
||
|
}
|
||
|
|
||
|
declare function isAsyncFunction(fn: unknown): fn is AsyncFunction;
|
||
|
|
||
|
export = isAsyncFunction;
|