feat!: Force release of interfaces (#388)

Force release of interfaces
This commit is contained in:
Akim 2023-11-24 02:14:28 +07:00 committed by GitHub
parent 65a9e44aac
commit 04c278b783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -11,6 +11,7 @@
"packages/core/js-client": {},
"packages/core/js-client-isomorphic": {},
"packages/core/marine-worker": {},
"packages/core/aqua-to-js": {}
"packages/core/aqua-to-js": {},
"packages/core/interfaces": {}
}
}

View File

@ -2,5 +2,6 @@
"packages/core/js-client": "0.5.1",
"packages/core/marine-worker": "0.5.0",
"packages/core/aqua-to-js": "0.3.1",
"packages/core/js-client-isomorphic": "0.3.0"
"packages/core/js-client-isomorphic": "0.3.0",
"packages/core/interfaces": "0.8.2"
}

View File

@ -26,5 +26,5 @@ export type JSONValue =
| null
| { [x: string]: JSONValue }
| Array<JSONValue>;
export type JSONArray = Array<JSONValue>;
export type JSONObject = { [x: string]: JSONValue };
export type JSONArray = Array<JSONValue>;