event.interface.d.ts 454 B

1234567
  1. import { ISubscribersDefine, ITenantDefine, ITopic } from '../../types';
  2. export type TriggerRecipientSubscriber = string | ISubscribersDefine;
  3. export type TriggerRecipient = TriggerRecipientSubscriber | ITopic;
  4. export type TriggerRecipients = TriggerRecipient[];
  5. export type TriggerRecipientsPayload = TriggerRecipientSubscriber | TriggerRecipients;
  6. export type TriggerTenantContext = string | ITenantDefine;
  7. //# sourceMappingURL=event.interface.d.ts.map