import { BehaviorSubject } from 'rxjs'; import { Breakpoints } from '../../../../../services/breakpoints.service'; import { GmTableColumnType } from './gm-table-column-type'; export interface GmTableConfigurationFieldColumn { label: string; name?: string; sortable?: boolean; nowrap?: boolean; display?: boolean; type?: GmTableColumnType; svgIcon?: string; click?: (element: any) => void; options?: BehaviorSubject | any[] | false; keyOptionValue?: string; keyOptionLabel?: string; expandable?: boolean; breakpoints?: Breakpoints[]; }