UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

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