How to Union in scope()?
Union 1 will be resolved as I would expect to
ts?: string | TimeStub | undefined;
:
But Union 2
will be resolved to
although I would expect something like user: User | TimeStub
If I'm trying to do the same with the base union syntax that I found
"ts?": "string|['instanceof', TimeStub] as Infer<TimeStub>"
I get a type error
https://stackblitz.com/edit/rzkceh-eodur9?file=demo.ts5 Replies
In terms of the syntax, I'd expect something like this:
if you're in a scope anyways, it usually makes sense to give expressions like that their own alias so you can reuse them easily and with the normal string syntax.
That said, the type inference is wrong for this. It seems like the normal strategy I added to avoid mapping over custom types and clobbering the original name doesn't work in scopes. Would be great if you could log an issue to make sure this is resolved!
Added an issue https://github.com/arktypeio/arktype/issues/915 - maybe you can check it if it describes the problem in the right way 🙂
GitHub
Type inference wrong for union with class · Issue #915 · arktypeio/...
Report a bug for the given union export const types = scope({ timeStub: ["instanceof", TimeStub] as Infer<TimeStub>, account: { user: "user|timeStub", provider: "prov...
Yes this is perfect, thank you! I am getting ready for a 2.0 prerelease. I'll make sure this is resolved there, and if it can be done easily, will port it to alpha as well.
I can also upgrade to 2.0 if this is somewhat stable, I was simply installing @latest 🙂
No don't it's not stable at all with the last release. I am hoping that the release I'm working on now will be usable outside a few features like cyclic generics etc. though