We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would allow parsing the equivalent syntax from TS:
const array = type("<t = unknown>", "t[]"); // unknown[] const a = array(); // string[] const b = array("string"); const types = scope({ "array<t = unknown>": "t[]", // unknown[] a: "array", // string[] b: "array<string>", }).export();
The text was updated successfully, but these errors were encountered:
format.normalize
Should also add defaulted generic parameters for some of our existing instance types like Set, Map and Array.
Set
Map
Array
Sorry, something went wrong.
ShawnMorreau
No branches or pull requests
Would allow parsing the equivalent syntax from TS:
The text was updated successfully, but these errors were encountered: