@brimdata/zealot
Version:
The Javascript Client for Zed Lakes
13 lines (12 loc) • 352 B
TypeScript
import { Type } from "../types/types";
import { Value } from "./types";
export declare abstract class Primitive implements Value {
value: string | null;
abstract type: Type;
abstract toJS(): any;
constructor(value?: string | null);
isUnset(): boolean;
isSet(): boolean;
toString(): string;
serialize(): string | null;
}