import {Int8} from "../values/int8" import {BasePrimitive} from "./base-primitive" export class TypeOfInt8 extends BasePrimitive { name = "int8" create(value: string | null) { return new Int8(value) } } export const TypeInt8 = new TypeOfInt8()