UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

13 lines (9 loc) 256 B
import {Bool} from "../values/bool" import {BasePrimitive} from "./base-primitive" export class TypeOfBool extends BasePrimitive<Bool> { name = "bool" create(value: string) { return new Bool(value) } } export const TypeBool = new TypeOfBool()