import { EventRelationType } from '../../common'; import { ChainAssetEvent } from '../interfaces'; export interface EventGroupItem { relationType: EventRelationType; event: ChainAssetEvent & { id: string; eventType: string; }; // Not sure if this is true approved?: boolean; }