export type KeyValue = { key: T, value: U, }; export type User = { id: string, email: string, custom: { [key: string] : string; }; }