UNPKG

unique-objects

Version:

Get unique objects from array of objects

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