util.d.ts 74 Bytes
export type ID = number | string;
export interface WithId {
    id: ID;
}