Added sample data for characters

This commit is contained in:
Alexis
2024-03-31 19:37:02 +02:00
parent a4b2fa271b
commit 2bf2ad2492
5 changed files with 67 additions and 5 deletions

8
src/models/Date.ts Normal file
View File

@@ -0,0 +1,8 @@
export type LeimDate = {
day: number
month: number
year: number
period: LeimPeriod
}
export type LeimPeriod = 'ante' | 'nante'