// Type definitions for array-unique 0.3 // Project: https://github.com/jonschlinkert/array-unique // Definitions by: Michaƫl St-Georges // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare function arrayUnique(arr: T[]): T[]; declare namespace arrayUnique { function immutable(arr: ReadonlyArray): T[]; } export = arrayUnique;