| 121 | } |
| 122 | |
| 123 | export interface DbField { |
| 124 | /** Stable uuid referenced by rows/views — NOT the CSV header. */ |
| 125 | id: string |
| 126 | /** The CSV column header (display + the header text written to disk). */ |
| 127 | name: string |
| 128 | type: FieldType |
| 129 | /** For `select` / `multiSelect`. */ |
| 130 | options?: SelectOption[] |
| 131 | /** Table column width in px. */ |
| 132 | width?: number |
| 133 | /** Hidden in the Table view by default (e.g. the id field). */ |
| 134 | hidden?: boolean |
| 135 | } |
| 136 | |
| 137 | export type FilterOp = |
| 138 | | 'is' |
nothing calls this directly
no outgoing calls
no test coverage detected