mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-26 05:14:11 +02:00
Rebased onto main after #572 merged. The wasm crate moved to crates/yaak-wasm and crates-server/yaak-web is now the server, so the render_template export, the regenerated pkg/ and the proxy/server wording move with them.
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
/* @ts-self-types="./yaak_wasm.d.ts" */
|
|
import * as wasm from "./yaak_wasm_bg.wasm";
|
|
import { __wbg_set_wasm } from "./yaak_wasm_bg.js";
|
|
|
|
__wbg_set_wasm(wasm);
|
|
wasm.__wbindgen_start();
|
|
export {
|
|
blob_delete, blob_get, blob_put, boot, prepare_http_send, render_template, rpc
|
|
} from "./yaak_wasm_bg.js";
|