jsmodern
Version:
An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.
11 lines • 307 B
TypeScript
import type { PrototypeStruct } from '../index.js';
interface IsAsyncFunction {
isAsyncFunction(x: any): boolean;
}
export declare const isAsyncFunction: PrototypeStruct;
declare global {
interface Function extends IsAsyncFunction {
}
}
export {};
//# sourceMappingURL=is-async-function.d.ts.map