You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pkl Regex and IntSeq types currently decode into objects which contain properties as passed by pkl server (eg. pattern for Regex). In both cases, we could decode into native runtime types.
Regex is straightforward, it can decode into new Regexp().
IntSeq could of course decode it into an array, or some other kind of iterable.
The text was updated successfully, but these errors were encountered:
Pkl Regex and IntSeq types currently decode into objects which contain properties as passed by
pkl server
(eg.pattern
for Regex). In both cases, we could decode into native runtime types.Regex is straightforward, it can decode into
new Regexp()
.IntSeq could of course decode it into an array, or some other kind of iterable.
The text was updated successfully, but these errors were encountered: