UNPKG

sequelize-typescript

Version:

Decorators and some other extras for sequelize (v3 + v4)

9 lines (8 loc) 251 B
/** * Removes duplicates from specified array */ export declare function unique<T>(arr: T[]): T[]; /** * Returns true for items, that only exists once on an array */ export declare const uniqueFilter: (item: any, index: any, arr: any) => boolean;