UNPKG

@promptbook/langtail

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

8 lines (7 loc) 356 B
/** * Creates a new set with all elements that are present in either set * * @deprecated use new javascript set methods instead @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set * @public exported from `@promptbook/utils` */ export declare function union<TItem>(...sets: ReadonlyArray<Set<TItem>>): Set<TItem>;