mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
|
import type { DateTime } from 'luxon';
|
||
|
import { EventMessageTypeNames } from 'n8n-workflow';
|
||
|
import type { AbstractEventPayload } from './AbstractEventPayload';
|
||
|
|
||
|
export interface AbstractEventMessageOptions {
|
||
|
__type?: EventMessageTypeNames;
|
||
|
id?: string;
|
||
|
ts?: DateTime | string;
|
||
|
eventName: string;
|
||
|
message?: string;
|
||
|
payload?: AbstractEventPayload;
|
||
|
anonymize?: boolean;
|
||
|
}
|