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