UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

13 lines (9 loc) 271 B
import {Int16} from "../values/int16" import {BasePrimitive} from "./base-primitive" export class TypeOfInt16 extends BasePrimitive<Int16> { name = "int16" create(value: string | null) { return new Int16(value) } } export const TypeInt16 = new TypeOfInt16()