mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
16 lines
328 B
TypeScript
16 lines
328 B
TypeScript
// Type definitions for uniq
|
|
// Project: https://www.npmjs.com/package/uniq
|
|
// Definitions by: Hans Windhoff <https://github.com/hansrwindhoff>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
interface Uniq{
|
|
<T>(ip:Array<T>): Array<T>;
|
|
}
|
|
|
|
declare var uniq :Uniq;
|
|
|
|
declare module "uniq" {
|
|
export = uniq;
|
|
}
|