UNPKG

jsmodern

Version:

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

9 lines 280 B
import { PrototypeStruct } from '..'; export declare type IsDisjointFn<T> = (other: Set<T>) => boolean; export declare const isDisjoint: PrototypeStruct; declare global { interface Set<T> { isDisjoint: IsDisjointFn<T>; } } //# sourceMappingURL=is-disjoint.d.ts.map