Valerie 2021-06-22 19:51:53 -04:00
commit 72e94c3f4e
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "frigid",
"version": "1.3.9",
"version": "1.3.10",
"main": "out/index.js",
"types": "out/index.d.ts",
"license": "MIT",

View File

@ -5,7 +5,9 @@ export const CTOR_CALLED = Symbol('CTOR_CALLED');
export const INVOKE_CTOR = Symbol('INVOKE_CTOR');
export const DEBUG = Symbol('DEBUG');
type SerializableClass = typeof Serializable;
type SerializableClass = {
new(): Serializable;
} & typeof Serializable;
export default class Serializable {