1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export type Fmt = "CL" | "Oz" | "Ml";
export class BaseUnit {
amount: number;
name: string;
plural?: string;
constructor(amount: number) {
this.amount = amount;
this.name = "BaseUnit";
}
format(_unit: Fmt) {
throw new Error("unimplemented");
}
}