@brimdata/zealot
Version:
The Javascript Client for Zed Lakes
16 lines (15 loc) • 417 B
TypeScript
import { Record } from "./record";
import { Value } from "./types";
export declare class Field {
name: string;
value: Value;
parent: Record | Field | null;
constructor(name: string, value: Value, parent: Record | Field | null);
/**
* Alias for value
*/
get data(): Value;
get path(): string[];
get rootRecord(): Record | null;
get baseValue(): import("..").Any | null;
}