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