/** * Represents a single column item in the table column editor. * * @public */ export interface ITableColumnEditorItem { /** * The unique key identifying the column. */ readonly key: string; /** * The display title of the column. */ title: string; /** * Whether the column is currently visible. */ visible: boolean; } //# sourceMappingURL=ITableColumnEditorItem.d.ts.map