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