uhhh typings... this work?
parent
af3f525726
commit
b8cb957ba7
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "frigid",
|
||||
"version": "1.3.11",
|
||||
"version": "1.3.12",
|
||||
"main": "out/index.js",
|
||||
"types": "out/index.d.ts",
|
||||
"license": "MIT",
|
||||
|
|
|
|||
|
|
@ -5,9 +5,7 @@ export const CTOR_CALLED = Symbol('CTOR_CALLED');
|
|||
export const INVOKE_CTOR = Symbol('INVOKE_CTOR');
|
||||
export const DEBUG = Symbol('DEBUG');
|
||||
|
||||
type SerializableClass = {
|
||||
new(): Serializable;
|
||||
} & typeof Serializable;
|
||||
type SerializableClass = typeof Serializable;
|
||||
|
||||
export default class Serializable {
|
||||
|
||||
|
|
|
|||
Reference in New Issue