UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

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