zapier / zapier-platform

The SDK for you to build an integration on Zapier
https://platform.zapier.com
Other
344 stars 188 forks source link

fix(schema-to-ts): Simplify Array types (IQQ-1490) #835

Closed tkcranny closed 2 months ago

tkcranny commented 2 months ago

This removes length-enforced tuples types with spread parameters that are difficult and annoying to write in separate declarations.

Example:

const choices: [FieldChoiceWithLabel, ...FieldChoiceWithLabel[] = [...]

becomes just:

const choices: FieldChoiceWithLabel[] = [...]

cc @cvanderkolk