12 lines
219 B
TypeScript
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);
|
||
|
}
|
||
|
}
|