🎉 init

This commit is contained in:
2026-07-01 15:43:18 +02:00
commit 2f492c55be
64 changed files with 11645 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
export type ParticipantId = number
export interface Participant {
id: ParticipantId
name: string
}
export interface Expense {
id: number
amountCents: number
payerId: ParticipantId
participantIds: ParticipantId[]
}
export interface Settlement {
fromId: ParticipantId
toId: ParticipantId
amountCents: number
}