/** * Browser entry for the Paper-3 WebGPU determinism harness. * * Bundled by `pnpm --filter @holoscript/engine run build:webgpu-determinism-harness` * and loaded by `scripts/webgpu-determinism-harness.html`. */ import { runDeterminismHarness } from './WebGPUDeterminismHarness'; declare global { interface Window { __WEBGPU_HARNESS_MOCK__?: boolean; __WEBGPU_DETERMINISM_ARTIFACT__?: Awaited>; __WEBGPU_DETERMINISM_ERROR__?: { name: string; message: string; stack?: string; }; } } //# sourceMappingURL=webgpu-determinism.entry.d.ts.map