typescript_safe/jewellery.ts

12 lines
219 B
TypeScript
Raw Normal View History

2024-11-06 09:57:58 +00:00
import { Item } from "./item";
export class Jewellery extends Item {
constructor(
id: number,
insuranceValue: number,
public type: string,
) {
super(id, insuranceValue);
}
}