browser-async.d.ts 269 B

1234567
  1. import * as blake3 from './esm/browser';
  2. /**
  3. * Manually loads the WebAssembly module, returning a promise that resolves
  4. * to the BLAKE3 implementation once available.
  5. */
  6. export default function load(module: string | URL | Request | object): Promise<typeof blake3>;