🐛 add env to useDb and apply prettier
tinyedge/deploy Deployed by TinyEdge

This commit is contained in:
2026-08-07 13:28:26 +02:00
parent 67727f96ab
commit cbe1b42f6e
54 changed files with 5492 additions and 2406 deletions
+10 -10
View File
@@ -1,19 +1,19 @@
export type ParticipantId = number
export type ParticipantId = number;
export interface Participant {
id: ParticipantId
name: string
id: ParticipantId;
name: string;
}
export interface Expense {
id: number
amountCents: number
payerId: ParticipantId
participantIds: ParticipantId[]
id: number;
amountCents: number;
payerId: ParticipantId;
participantIds: ParticipantId[];
}
export interface Settlement {
fromId: ParticipantId
toId: ParticipantId
amountCents: number
fromId: ParticipantId;
toId: ParticipantId;
amountCents: number;
}