fix(core): update

This commit is contained in:
2023-10-03 19:12:49 +02:00
parent 8bd279637b
commit 73a6ce2786
5 changed files with 672 additions and 1161 deletions

View File

@ -1,5 +1,9 @@
import * as smartdelay from '@push.rocks/smartdelay';
const myConst: string = 'hello';
await smartdelay.delayFor(1000);
function sealed(constructor: Function) {
Object.seal(constructor);
Object.seal(constructor.prototype);
@ -15,4 +19,6 @@ class BugReport {
}
}
console.log(myConst);