typescript_safe/jewellery.ts
2024-11-06 10:57:58 +01:00

12 lines
219 B
TypeScript

import { Item } from "./item";
export class Jewellery extends Item {
constructor(
id: number,
insuranceValue: number,
public type: string,
) {
super(id, insuranceValue);
}
}