export interface MatTableRow { // NOTE: Any property allowed [key: string]: any; disabled?: boolean; icon?: string; topLevelActions?: { when: boolean; label: string; icon: string; type?: string; actionName: string; link?: string[]; }[]; nestedActions?: { when: boolean; label: string; actionName: string; warn?: boolean; }[]; tooltip?: string; filterText?: string; }