mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
import { EmailRequestedEvent } from '@standardnotes/domain-events'
|
|
|
|
export interface DomainEventFactoryInterface {
|
|
createEmailRequestedEvent(dto: {
|
|
userEmail: string
|
|
messageIdentifier: string
|
|
level: string
|
|
body: string
|
|
subject: string
|
|
}): EmailRequestedEvent
|
|
}
|