Skip to content
New issue

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

Default values for generic parameters #1054

Open
ssalbdivad opened this issue Jul 18, 2024 · 0 comments
Open

Default values for generic parameters #1054

ssalbdivad opened this issue Jul 18, 2024 · 0 comments

Comments

@ssalbdivad
Copy link
Member

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();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Backlog
Development

No branches or pull requests

1 participant