mirror of
https://github.com/tiennm99/Valentine-Vue-Tailwind.git
synced 2026-09-05 02:18:28 +00:00
5 lines
74 B
TypeScript
5 lines
74 B
TypeScript
export type ID = number | string;
|
|
export interface WithId {
|
|
id: ID;
|
|
}
|