export interface TimelineItemActionType { name: string; triggerFunction: (index: number) => void; } export interface TimelineOptionsItemsType { name: string; creationDateTime: string; actions: TimelineItemActionType[]; } export interface TimelineOptionsType { items: TimelineOptionsItemsType[]; }