UNPKG

@plurid/plurid-functions

Version:
8 lines (7 loc) 157 B
export interface WithID { id: string; } export declare type IdentifiedByID<T> = T & WithID; export interface Indexed<T> { [key: string]: T; }