1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/development/lib/build-type.d.ts

7 lines
255 B
TypeScript
Raw Normal View History

import { Infer, Struct } from 'superstruct';
export type Unique<Element extends Struct<any>> = (
struct: Struct<Infer<Element>[], Infer<Element>>,
eq?: (a: Infer<Element>, b: Infer<Element>) => boolean,
) => Struct<Infer<Element>[], Infer<Element>>;