minor typings update, idk what im doing
parent
f598ba6bdb
commit
cfc083b581
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
Reference in New Issue