epilogue.d.ts 290 B

12345678910
  1. /**
  2. * Load the WebAssembly module in the background, if it has not already been loaded.
  3. *
  4. * Returns a promise which will resolve once the other methods are ready.
  5. *
  6. * @returns {Promise<void>}
  7. */
  8. export function loadWasmAsync(): Promise<void>;
  9. export function loadWasmSync(): void;