import {Int16} from "../values/int16" import {BasePrimitive} from "./base-primitive" export class TypeOfInt16 extends BasePrimitive { name = "int16" create(value: string | null) { return new Int16(value) } } export const TypeInt16 = new TypeOfInt16()