| 36 | } |
| 37 | |
| 38 | export interface Field<T = any, V = Vector<T>> { |
| 39 | /** |
| 40 | * Name of the field (column) |
| 41 | */ |
| 42 | name: string; |
| 43 | /** |
| 44 | * Field value type (string, number, etc) |
| 45 | */ |
| 46 | type: FieldType; |
| 47 | values: T[]; // The raw field values |
| 48 | labels?: {[key: string]: string}; |
| 49 | } |
| 50 | |
| 51 | |
| 52 | export interface Vector<T = any> { |
nothing calls this directly
no outgoing calls
no test coverage detected