Merge pull request 'Fix compilation error' (#144) from fix-build into main
Some checks failed
Playwright Tests / test (push) Has been skipped
Check usage of free licenses / build-static-assets (push) Successful in 17s
Build Nginx-based docker image / build-static-assets (push) Failing after 2m26s

Reviewed-on: #144
This commit is contained in:
bustikiller 2024-12-09 19:12:57 +00:00
commit 17b324d338

View File

@ -8,9 +8,9 @@ export type PricingType = typeof pricingTypes[number];
export class Expense implements Entity { export class Expense implements Entity {
id?: string; id?: string;
name: string; name?: string;
amount: number; amount?: number;
pricingType: PricingType; pricingType?: PricingType;
constructor(id?: string, name?: string, amount?: number, pricingType?: PricingType) { constructor(id?: string, name?: string, amount?: number, pricingType?: PricingType) {
this.id = id; this.id = id;