jsmodern
Version:
An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.
11 lines • 334 B
TypeScript
import { PrototypeStruct } from '..';
export declare type IsAsyncIteratorFn = (x: any) => boolean;
export declare const isAsyncIterator: PrototypeStruct;
declare global {
namespace NodeJS {
interface Global {
isAsyncIterator: IsAsyncIteratorFn;
}
}
}
//# sourceMappingURL=is-async-iterator.d.ts.map