/** * Represents information about a selected vertical */ export interface IDataVertical { /** * The vertical unique key */ key: string; /** * The vertical tab name */ name: string; /** * The vertical tab value */ value: string; }