guersam
guersam
Aarktype
Created by guersam on 3/19/2025 in #questions
Inferring generic types
Hi, I'm new to ArkType and have little knowledge about TypeScript generic. I wish I had something like below:
import { type } from "arktype"

const boxOf = type("<t>", { box: "t" })

type BoxOf<t> = typeof boxOf.infer<t> // not working for Generic
import { type } from "arktype"

const boxOf = type("<t>", { box: "t" })

type BoxOf<t> = typeof boxOf.infer<t> // not working for Generic
Currently I've manually define the type to match the schema. What am I missing, or is there any workaround? Thanks in advance.
36 replies