Arktype Error instance of?

Hi there. If I have
const invalidUser = {
name: 5,
age: -5 // Invalid: age is negative
};

const result = userType.from(invalidUser as any);
const invalidUser = {
name: 5,
age: -5 // Invalid: age is negative
};

const result = userType.from(invalidUser as any);
And that throws what would that error be an instance of that I can use? tried error instanceof type.errors || error instanceof ArkErrors with no luck. Thanks!
2 Replies
TheGuy
TheGuyOP2d ago
nvm I think its AggregateError? Most likely is but ill use that for now
ssalbdivad
ssalbdivad2d ago
In recent versions it is a TraversalError. I'm just now realizing I don't actually export that from arktype so you' d need to get it from @ark/schema, but I'll add it directly in the next release

Did you find this page helpful?