@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
8 lines (7 loc) • 356 B
TypeScript
/**
* 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>;