UNPKG

@plurid/plurid-data

Version:
11 lines (10 loc) 248 B
export interface Indexed<T> { [key: string]: T; } export interface WithID { id: string; } export declare type Identified<T> = T & WithID; export declare type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]>; };