botbook/node_modules/json-schema-library/dist/lib/utils/uniqueItems.d.ts

5 lines
173 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
/**
* @returns list with unique values only
*/
export declare function uniqueItems(list: (number | string | boolean | null | undefined)[]): (string | number | boolean)[];