Files

3 lines
68 B
TypeScript
Raw Normal View History

declare function unique<T>(array: T[]): T[];
export default unique;