export type EventActionOptionsType = { isFirst?: boolean; isLast?: boolean; }; export interface EventAction { getArgs(): T; getName(): string; getOptions(): EventActionOptionsType; }