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
Note that, the bug you're reporting may have registered in the issues by another user. Even the bug you're reporting may have been fixed in the @next version. In such reasons, I recommend you to check the old issues and reproduct your code with the @next version before publishing the bug reporting issue.
`npm install --save-dev typia@next`
When the same error occurs even in the @next version, then please fill the below template:
importtypiafrom'typia';/* the blow code a copy from 'type-fest' */typeJsonObject={[Keyinstring]: JsonValue}&{[Keyinstring]?: JsonValue|undefined;};/**Matches a JSON array.@category JSON*/typeJsonArray=JsonValue[]|readonlyJsonValue[];/**Matches any valid JSON primitive value.@category JSON*/typeJsonPrimitive=string|number|boolean|null;/**Matches any valid JSON value.@see `Jsonify` if you need to transform a type to one that is assignable to `JsonValue`.@category JSON*/typeJsonValue=JsonPrimitive|JsonObject|JsonArray;/* copy from type-fest ends */typeT={json: JsonObject;};exportconstisRequestData=typia.createIs<T>();
The text was updated successfully, but these errors were encountered:
Even though typia v7 has started supporting the tagged intersection type, no way to support Array & number like nonsensible case. Cannot establlish validation plan about such types.
Bug Report
Note that, the bug you're reporting may have registered in the issues by another user. Even the bug you're reporting may have been fixed in the
@next
version. In such reasons, I recommend you to check the old issues and reproduct your code with the@next
version before publishing the bug reporting issue.`npm install --save-dev typia@next`
When the same error occurs even in the
@next
version, then please fill the below template:📝 Summary
Write a short summary of the bug in here.
maybe duplication of #911?
This code fails with this error
⏯ Playground Link
I cannot save the code to playground, so I created stackblitz environment
https://stackblitz.com/edit/stackblitz-starters-q9vn4u?file=src%2Ftemplates%2Findex.ts
💻 Code occuring the bug
The text was updated successfully, but these errors were encountered: