@sanox/sangine-core 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -62,7 +62,6 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
62
62
 
63
63
  export interface InitOutput {
64
64
  readonly memory: WebAssembly.Memory;
65
- readonly run: () => void;
66
65
  readonly register_event_listener: (a: any) => void;
67
66
  readonly register_asset_decoder: (a: any) => void;
68
67
  readonly set_render_quality: (a: number, b: any) => [number, number];
@@ -78,6 +77,7 @@ export interface InitOutput {
78
77
  readonly destroy_window: (a: number) => [number, number];
79
78
  readonly set_window_action: (a: number, b: any) => [number, number];
80
79
  readonly create_window: (a: number, b: number, c: any) => number;
80
+ readonly run: () => void;
81
81
  readonly wasm_bindgen__closure__destroy__h17333457aae2b090: (a: number, b: number) => void;
82
82
  readonly wasm_bindgen__closure__destroy__hf05ec8f078dda008: (a: number, b: number) => void;
83
83
  readonly wasm_bindgen__convert__closures_____invoke__h2a85c969f4c20848: (a: number, b: number, c: any, d: any) => void;
Binary file
@@ -1,7 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  export const memory: WebAssembly.Memory;
4
- export const run: () => void;
5
4
  export const register_event_listener: (a: any) => void;
6
5
  export const register_asset_decoder: (a: any) => void;
7
6
  export const set_render_quality: (a: number, b: any) => [number, number];
@@ -17,6 +16,7 @@ export const set_route_highlight: (a: number, b: number, c: number, d: number) =
17
16
  export const destroy_window: (a: number) => [number, number];
18
17
  export const set_window_action: (a: number, b: any) => [number, number];
19
18
  export const create_window: (a: number, b: number, c: any) => number;
19
+ export const run: () => void;
20
20
  export const wasm_bindgen__closure__destroy__h17333457aae2b090: (a: number, b: number) => void;
21
21
  export const wasm_bindgen__closure__destroy__hf05ec8f078dda008: (a: number, b: number) => void;
22
22
  export const wasm_bindgen__convert__closures_____invoke__h2a85c969f4c20848: (a: number, b: number, c: any, d: any) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanox/sangine-core",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Sangine core renderer runtime (WASM + workers)",
5
5
  "type": "module",
6
6
  "private": false,