UNPKG

@mbc-cqrs-serverless/core

Version:
18 lines (17 loc) 341 B
export interface INotification { id: string; table: string; pk: string; sk: string; tenantCode: string; action: string; content?: object; } export interface EmailNotification { fromAddr?: string; toAddrs: string[]; ccAddrs?: string[]; bccAddrs?: string[]; subject: string; body: string; }