UNPKG

328 BTypeScriptView Raw
1// Type definitions for uniq
2// Project: https://www.npmjs.com/package/uniq
3// Definitions by: Hans Windhoff <https://github.com/hansrwindhoff>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6
7interface Uniq{
8 <T>(ip:Array<T>): Array<T>;
9}
10
11declare var uniq :Uniq;
12
13declare module "uniq" {
14export = uniq;
15}