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.
8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
export interface GameMessageItem {
|
|
type: number;
|
|
id: number;
|
|
message: string;
|
|
startDate: Date;
|
|
endDate: Date;
|
|
}
|