Johann Woelper 5 years ago
parent
commit
af0f6f3fe3
5 changed files with 1552 additions and 0 deletions
  1. 15 0
      pkg/package.d.ts
  2. 1513 0
      pkg/package.js
  3. 15 0
      pkg/package.json
  4. 9 0
      pkg/package_bg.d.ts
  5. BIN
      pkg/package_bg.wasm

+ 15 - 0
pkg/package.d.ts

@@ -0,0 +1,15 @@
+/* tslint:disable */
+/**
+*/
+export function render(): void;
+
+/**
+* If `module_or_path` is {RequestInfo}, makes a request and
+* for everything else, calls `WebAssembly.instantiate` directly.
+*
+* @param {RequestInfo | BufferSource | WebAssembly.Module} module_or_path
+*
+* @returns {Promise<any>}
+*/
+export default function init (module_or_path?: RequestInfo | BufferSource | WebAssembly.Module): Promise<any>;
+        

File diff suppressed because it is too large
+ 1513 - 0
pkg/package.js


+ 15 - 0
pkg/package.json

@@ -0,0 +1,15 @@
+{
+  "name": "webdrop",
+  "collaborators": [
+    "Johann Woelper <woelper@gmail.com>"
+  ],
+  "version": "0.1.0",
+  "files": [
+    "package_bg.wasm",
+    "package.js",
+    "package.d.ts"
+  ],
+  "module": "package.js",
+  "types": "package.d.ts",
+  "sideEffects": "false"
+}

+ 9 - 0
pkg/package_bg.d.ts

@@ -0,0 +1,9 @@
+/* tslint:disable */
+export const memory: WebAssembly.Memory;
+export function render(): void;
+export function __wbindgen_exn_store(a: number): void;
+export function __wbindgen_malloc(a: number): number;
+export function __wbindgen_realloc(a: number, b: number, c: number): number;
+export function __wbindgen_free(a: number, b: number): void;
+export const __wbg_function_table: WebAssembly.Table;
+export function __wbindgen_start(): void;

BIN
pkg/package_bg.wasm