UNPKG

jsmodern

Version:

An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.

9 lines 285 B
import { PrototypeStruct } from '..'; export declare type IntersectionFn<T> = (other: Set<T>) => T[]; export declare const intersection: PrototypeStruct; declare global { interface Set<T> { intersection: IntersectionFn<T>; } } //# sourceMappingURL=intersection.d.ts.map