13 lines
187 B
TypeScript
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;
|
|
};
|