A
arktype•3w ago
notjosh

Help with default values

I can't figure out how to make inferred types play nicely with defaults. I've read through a few threads with various approaches, but everything causes a type error (all something like "string is not assignable to [Default<> / (In: in) => Out]". here's a tsplay (link) which shows my approach. thanks!
TS Playground - An online editor for exploring TypeScript and JavaS...
The Playground lets you write TypeScript or JavaScript online in a safe and sharable way.
2 Replies
paelen
paelen•3w ago
try this: export const someInput = { OKAY: 'okay', FOO: 'foo', BAR: 'bar', BAZ: 'baz', } satisfies typeof someSchema.infer;
notjosh
notjoshOP•2w ago
ah nice, that works, thank you! not sure where I got the type.infer<> pattern from, but this works much better 🙂

Did you find this page helpful?