5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
![]() |
/**
|
||
|
* @returns list with unique values only
|
||
|
*/
|
||
|
export declare function uniqueItems(list: (number | string | boolean | null | undefined)[]): (string | number | boolean)[];
|