/** * Column interface for nv-datagrid */ export interface Column { /** * Display name of the column */ header?: string; /** * Data accessor for the column */ accessor: string; /** * Group name for the column */ group?: string; }