Files
ruvnet--RuView/vendor/sublinear-time-solver/dist/core/wasm-bridge.d.ts
T
ruv 4b1005524e feat: complete vendor repos, add edge intelligence and WASM modules
- Add 154 missing vendor files (gitignore was filtering them)
  - vendor/midstream: 564 files (was 561)
  - vendor/sublinear-time-solver: 1190 files (was 1039)
- Add ESP32 edge processing (ADR-039): presence, vitals, fall detection
- Add WASM programmable sensing (ADR-040/041) with wasm3 runtime
- Add firmware CI workflow (.github/workflows/firmware-ci.yml)
- Add wifi-densepose-wasm-edge crate for edge WASM modules
- Update sensing server, provision.py, UI components

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-03-02 23:53:25 -05:00

25 lines
828 B
TypeScript

/**
* WASM Bridge - Actually functional WASM integration
*
* This module properly loads and uses the Rust-compiled WASM modules
*/
/**
* Load the temporal neural solver WASM
*/
export declare function loadTemporalNeuralSolver(): Promise<any>;
/**
* Load the graph reasoner WASM for PageRank
*/
export declare function loadGraphReasonerWasm(): Promise<any>;
/**
* Load all available WASM modules
*/
export declare function initializeAllWasm(): Promise<{
temporal: any;
graph: any;
hasWasm: boolean;
}>;
declare function multiplyMatrixVectorJS(matrix: Float64Array, vector: Float64Array, rows: number, cols: number): Float64Array;
declare function computePageRankJS(adjacency: Float64Array, n: number, damping: number, iterations: number): Float64Array;
export { multiplyMatrixVectorJS, computePageRankJS };