tomblachut / svelte-intellij

Svelte components in WebStorm and friends
MIT License
485 stars 38 forks source link

Support TypeScript literal strings in components #269

Closed MarvinJWendt closed 2 years ago

MarvinJWendt commented 2 years ago
export let size: "medium" | "large" | "small" = 'medium';

This limits the attribute size to be one of ["medium", "large", "small"]. I think it would be nice to have those options in the autocomplete when using the attribute:

image

tomblachut commented 2 years ago

Duplicate/subset of #220