holy ravioli

This commit is contained in:
Laurent
2025-03-20 17:36:46 +01:00
parent fd7bdace3b
commit 609ef2b705
28 changed files with 245 additions and 93 deletions

View File

@@ -0,0 +1,21 @@
export class EventDate {
private readonly value : number;
public constructor(date : Date) {
this.value = date.getTime();
}
public getValue() : number{
return this.value;
}
public toString() {
this.value.toString();
}
}
export interface EventDateState {
value : number;
}