Files
evidencija-rezija/app/lib/db-types.ts
2024-01-04 10:30:43 +01:00

13 lines
187 B
TypeScript

export type Location = {
id: number;
name: string;
};
export type Bill = {
id: number;
name: string;
paid: boolean;
amount?: number;
description?: string;
};