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