UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

16 lines (15 loc) 544 B
import * as zjson from "../../zjson"; import { SetValue } from "../../zjson"; import { DecodeStream } from "../decode-stream"; import { EncodeStream } from "../encode-stream"; import { Set } from "../values/set"; import { Type } from "./types"; export declare class TypeSet implements Type { type: Type; kind: string; constructor(type: Type); static stringify(type: Type): string; create(values: SetValue, stream: DecodeStream): Set; serialize(stream: EncodeStream): zjson.NoId<zjson.SetType>; toString(): string; }