export type ID = number | string;export interface WithId { id: ID;}
export type ID = number | string;
export interface WithId {
id: ID;
}