| 219 | } |
| 220 | |
| 221 | export interface IBaseColumn { |
| 222 | clearable?: boolean | boolean[] | 'first' | 'last'; |
| 223 | deletable?: boolean | boolean[] | 'first' | 'last'; |
| 224 | editable: boolean; |
| 225 | filter_options: IFilterOptions; |
| 226 | hideable?: boolean | boolean[] | 'first' | 'last'; |
| 227 | renamable?: boolean | boolean[] | 'first' | 'last'; |
| 228 | selectable?: boolean | boolean[] | 'first' | 'last'; |
| 229 | sort_as_null: SortAsNull; |
| 230 | id: ColumnId; |
| 231 | name: string | string[]; |
| 232 | } |
| 233 | |
| 234 | export interface ILoadingState { |
| 235 | is_loading: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…