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