/** * Copyright (c) 2025 Mihajlo Stojanovski * All rights reserved. */ import { Rule, RuleContext, Finding } from "../../../types"; /** * Worker/Infra Error Rule * Covers: worker shutdown, browser crash, process errors */ export declare class WorkerInfraRule implements Rule { id: string; priority: number; kind: Finding["kind"]; match(ctx: RuleContext): boolean; build(ctx: RuleContext): Finding[]; } //# sourceMappingURL=worker-infra.d.ts.map