// Hand-written type declaration for matmul.js (emscripten's generated glue // has none). Copied next to dist/matmul.js by build-wasm.sh — TS picks up a // .d.ts colocated with a same-named .js file automatically. export interface MatmulExports { _matmul_naive(a: number, b: number, c: number, n: number): void _matmul_blocked(a: number, b: number, c: number, n: number): void _malloc(bytes: number): number _free(ptr: number): void HEAPF64: Float64Array } export default function createMatmulModule(opts?: { locateFile?: (path: string) => string }): Promise