UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

13 lines (9 loc) 263 B
import {Int8} from "../values/int8" import {BasePrimitive} from "./base-primitive" export class TypeOfInt8 extends BasePrimitive<Int8> { name = "int8" create(value: string | null) { return new Int8(value) } } export const TypeInt8 = new TypeOfInt8()