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
3 changed files with 5 additions and 3 deletions

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>;