/** * Interface for item to be displayed in the demo table. */ export interface TableItem { col1: string; col2: string; col3: string; }