wasm.d.ts 266 B

123456
  1. import * as wasm from '../../dist/wasm/nodejs/blake3_js';
  2. /**
  3. * Lazyily get the WebAssembly module. Used to avoid unnecessarily importing
  4. * the wasm when extending the WebAssembly node code for native bindings.
  5. */
  6. export declare const getWasm: () => typeof wasm;