MCPcopy
hub / github.com/deepops-ai/deepops / Field

Interface Field

ui/src/types/seriesData.ts:38–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38export 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
52export interface Vector<T = any> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected