2021-07-22 19:55:08 +00:00
|
|
|
const myConst: string = 'hello';
|
|
|
|
|
|
|
|
function sealed(constructor: Function) {
|
|
|
|
Object.seal(constructor);
|
|
|
|
Object.seal(constructor.prototype);
|
|
|
|
}
|
|
|
|
|
|
|
|
@sealed
|
|
|
|
class BugReport {
|
2022-03-14 15:32:12 +00:00
|
|
|
type = 'report';
|
2021-07-22 19:55:08 +00:00
|
|
|
title: string;
|
|
|
|
|
|
|
|
constructor(t: string) {
|
|
|
|
this.title = t;
|
|
|
|
}
|
|
|
|
}
|
2019-04-30 07:44:46 +00:00
|
|
|
|
|
|
|
console.log(myConst);
|