/** * `parseSseEventBlock` — parses one SSE frame block from smee.io. * * Matches the inline parser in * `packages/orchestrator/src/services/smee-receiver.ts`. Extracts the * `x-github-event` and `body.action` discriminators plus the full body object, * dropping `ready`/`ping` heartbeat frames silently. Malformed JSON → null. */ export interface NormalizedPayload { githubEvent: string; action: string; body: Record; } export declare function parseSseEventBlock(text: string): NormalizedPayload | null; //# sourceMappingURL=sse-parser.d.ts.map