declare global { export interface Array { /** * #### Uniquify * * Removes repeated items from the array * * * * * * Example: * ```typescript * import "@thalesrc/js-utils/array/proto/uniquify"; * * const array = ["a", "b", "c", "a", "b", "c"]; * * array.uniquify(); // ["a", "b", "c"] * ``` * * * * * @return The new uniquified array */ uniquify(): T[]; } } export {};