5 lines
74 B
TypeScript
Raw Normal View History

2025-07-07 09:21:15 +08:00
export type ID = number | string;
export interface WithId {
id: ID;
}