UNPKG

@quinck/aws-cognito-client

Version:

Provides a user attributes generic cognito client.

7 lines (6 loc) 237 B
export type KeyOf<T> = keyof T; export type StringKeyOf<T> = Extract<keyof T, string>; export type Entries<K extends string, V> = [K, V][]; export type DeepPartial<T> = T extends object ? { [P in keyof T]?: DeepPartial<T[P]>; } : T;