@yodaos-pkg/ink 0.1.0

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.
Binary file
@@ -0,0 +1,29 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ export const memory: WebAssembly.Memory;
4
+ export const __wbg_inkwebview_free: (a: number, b: number) => void;
5
+ export const get_version: (a: number) => void;
6
+ export const inkwebview_bindCanvas: (a: number, b: number, c: number) => void;
7
+ export const inkwebview_blur: (a: number) => void;
8
+ export const inkwebview_destroy: (a: number) => void;
9
+ export const inkwebview_dispatchInput: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
10
+ export const inkwebview_dispatchPointer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => void;
11
+ export const inkwebview_focus: (a: number) => void;
12
+ export const inkwebview_isRunning: (a: number) => number;
13
+ export const inkwebview_new: (a: number, b: number, c: number) => number;
14
+ export const inkwebview_notifyUserInteraction: (a: number) => void;
15
+ export const inkwebview_openBundle: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
16
+ export const inkwebview_render: (a: number, b: number) => void;
17
+ export const inkwebview_resize: (a: number, b: number, c: number, d: number) => void;
18
+ export const main: () => void;
19
+ export const __wasm_bindgen_func_elem_8675: (a: number, b: number) => void;
20
+ export const __wasm_bindgen_func_elem_12871: (a: number, b: number) => void;
21
+ export const __wasm_bindgen_func_elem_8855: (a: number, b: number, c: number) => void;
22
+ export const __wasm_bindgen_func_elem_12872: (a: number, b: number, c: number) => void;
23
+ export const __wasm_bindgen_func_elem_8856: (a: number, b: number) => void;
24
+ export const __wbindgen_export: (a: number, b: number) => number;
25
+ export const __wbindgen_export2: (a: number, b: number, c: number, d: number) => number;
26
+ export const __wbindgen_export3: (a: number) => void;
27
+ export const __wbindgen_export4: (a: number, b: number, c: number) => void;
28
+ export const __wbindgen_add_to_stack_pointer: (a: number) => number;
29
+ export const __wbindgen_start: () => void;
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@yodaos-pkg/ink",
3
+ "version": "0.1.0",
4
+ "description": "Ink Web SDK for browser rendering and VFS-backed app loading",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist/"
10
+ ],
11
+ "scripts": {
12
+ "build": "node scripts/build.js",
13
+ "test": "npm run build && node --test test/**/*.test.js"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/jsar-project/ink"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "registry": "https://registry.npmjs.org/"
22
+ },
23
+ "license": "ISC"
24
+ }