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