uhhh typings... this work?

master
Valerie 2021-06-22 20:39:09 -04:00
parent af3f525726
commit b8cb957ba7
2 changed files with 2 additions and 4 deletions

View File

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

View File

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