UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

85 lines (83 loc) 3.31 kB
import {Type} from "./types/types" import {Value} from "./values/types" export {ZedContext as Context, DefaultContext} from "./context" export {TypeAlias} from "./types/type-alias" export {TypeArray} from "./types/type-array" export {TypeBool} from "./types/type-bool" export {TypeBString} from "./types/type-bstring" export {TypeBytes} from "./types/type-bytes" export {TypeDuration} from "./types/type-duration" export {TypeError} from "./types/type-error" export {TypeFloat64} from "./types/type-float64" export {TypeInt16} from "./types/type-int16" export {TypeInt32} from "./types/type-int32" export {TypeInt64} from "./types/type-int64" export {TypeInt8} from "./types/type-int8" export {TypeIp} from "./types/type-ip" export {TypeMap} from "./types/type-map" export {TypeNet} from "./types/type-net" export {TypeNull} from "./types/type-null" export {TypeRecord, FieldData} from "./types/type-record" export {TypeField} from "./types/type-field" export {TypeSet} from "./types/type-set" export {TypeString} from "./types/type-string" export {TypeTime} from "./types/type-time" export {TypeType} from "./types/type-type" export {TypeTypename} from "./types/type-typename" export {TypeUint16} from "./types/type-uint16" export {TypeUint32} from "./types/type-uint32" export {TypeUint64} from "./types/type-uint64" export {TypeUint8} from "./types/type-uint8" export {TypeUnion} from "./types/type-union" export {Array} from "./values/array" export {Bool} from "./values/bool" export {BString} from "./values/bstring" export {Bytes} from "./values/bytes" export {Duration} from "./values/duration" export {Error} from "./values/error" export {Field} from "./values/field" export {Float64} from "./values/float64" export {Int16} from "./values/int16" export {Int32} from "./values/int32" export {Int64} from "./values/int64" export {Int8} from "./values/int8" export {Ip} from "./values/ip" export {ZedMap as Map} from "./values/map" export {Net} from "./values/net" export {Null} from "./values/null" export {Primitive} from "./values/primitive" export {Record} from "./values/record" export {Set} from "./values/set" export {String} from "./values/string" export {Time} from "./values/time" export {TypeValue} from "./values/type-value" export {Typename} from "./values/typename" export {Uint16} from "./values/uint16" export {Uint32} from "./values/uint32" export {Uint64} from "./values/uint64" export {Uint8} from "./values/uint8" export {Union} from "./values/union" export * from "./values/types" export * from "./types/types" export * from "./types/type-primitives" export * from "./utils/is-type" export * from "./utils/flat-columns" export * from "./utils/get-primitive-type" export * from "./utils/is-alias" export * from "./utils/is-duration" export * from "./utils/is-float64" export * from "./utils/is-int" export * from "./utils/is-iterable" export * from "./utils/is-named" export * from "./utils/is-null" export * from "./utils/is-primitive-name" export * from "./utils/is-primitive" export * from "./utils/is-string" export * from "./utils/is-time" export * from "./utils/is-type-alias" export * from "./utils/true-type" export * from "./utils/base-value" export * from "./utils/is-container" export * from "./utils/is-value" export * from "./utils/typeunder" export type Any = Type | Value