UNPKG

unique-objects

Version:

Get unique objects from array of objects

6 lines (4 loc) 179 B
declare module 'unique-objects' { type ObjectType = Record<string, unknown>; export default function (arrayInput: ObjectType[], keys: Array<keyof ObjectType>): ObjectType[]; }