@ux-aspects/ux-aspects
Version:
Open source user interface framework for building modern, responsive, mobile big data applications
9 lines (8 loc) • 350 B
TypeScript
/** An interface representing a grouped item */
export interface ColumnPickerGroupItem {
/** The name of the group that this column belongs to. */
group?: string;
/** The name of the column. */
name: string;
}
export declare function isColumnPickerGroupItem(column: string | ColumnPickerGroupItem): column is ColumnPickerGroupItem;