import { createEventBus } from 'n8n-design-system/utils'; export const mfaEventBus = createEventBus(); export interface MfaModalClosedEventPayload { mfaCode: string; } export interface MfaModalEvents { close: MfaModalClosedEventPayload | undefined; closed: MfaModalClosedEventPayload | undefined; } /** * Event bus for transmitting the MFA code from a modal back to the view */ export const promptMfaCodeBus = createEventBus();