/** * Anti-corruption layer between bridge runtime and baileyrs domain code. * * Adapters here normalize raw bridge payloads into the canonical event union * declared in `types.ts`. Downstream code consumes the canonical types * exclusively — see `Socket/events.ts` for the bridge-canonical-Baileys * three-stage pipeline. */ export { adaptBridgeEvent, KNOWN_BRIDGE_EVENT_TYPES } from './adapt.js'; export * from './types.js'; export { asBool, asBoolOr, asJidString, asNumber, asString, bridgeJidToString, isBridgeJid, isObject, normalizeDiscriminator, toUnixSeconds } from './primitives.js'; //# sourceMappingURL=index.d.ts.map