No cleaner development history than this exists. It's difficult to methodically design something when you don't yet know what it is you're designing.
7 lines
101 B
TypeScript
7 lines
101 B
TypeScript
export interface GameEventItem {
|
|
type: number;
|
|
id: number;
|
|
startDate: Date;
|
|
endDate: Date;
|
|
}
|