17 lines
834 B
TypeScript
17 lines
834 B
TypeScript
// Parser shim. The widget consumes a single `parseEvent(rawEvent)` and
|
|
// the dialect handles the full event surface — m.text, m.notice, m.image
|
|
// (QR broadcasts), m.room.redaction (post-scan cleanup). M13 ships one
|
|
// dialect, `go_v2604`, for the operator's current bridge image. When
|
|
// bridgev2 strings drift in a future Go release, add a sibling dialect
|
|
// file and switch the import below.
|
|
//
|
|
// The dialects/ subdirectory is kept as a seam for that swap; we don't
|
|
// implement runtime autodetect (the operator owns one bridge image at a
|
|
// time and a parser pin is honest about that).
|
|
|
|
import type { LoginEvent, ParsableEvent } from './types';
|
|
import { parseEventGoV2604 } from './dialects/go_v2604';
|
|
|
|
export type { ParsableEvent };
|
|
|
|
export const parseEvent = (event: ParsableEvent): LoginEvent => parseEventGoV2604(event);
|