Files
splitt-the-bill/shared/types.ts
T
2026-07-01 15:43:18 +02:00

20 lines
329 B
TypeScript

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
}