UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

13 lines (9 loc) 249 B
import {Null} from "../values/null" import {BasePrimitive} from "./base-primitive" export class TypeOfNull extends BasePrimitive<Null> { name = "null" create(_value: any) { return new Null() } } export const TypeNull = new TypeOfNull()