UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

13 lines (9 loc) 279 B
import {Uint16} from "../values/uint16" import {BasePrimitive} from "./base-primitive" export class TypeOfUint16 extends BasePrimitive<Uint16> { name = "uint16" create(value: string | null) { return new Uint16(value) } } export const TypeUint16 = new TypeOfUint16()