jumpinjackie / jsdoc-typescript-plugin

Experimental JSDoc plugin to generate TypeScript definition files (.d.ts) from JSDoc-annotated source
34 stars 7 forks source link

Support TS 1.8 string enum types #41

Closed jumpinjackie closed 8 years ago

jumpinjackie commented 8 years ago

TS 1.8 allows string enums to be defined like so:

type StringEnum = "foo" | "bar";

Allow the option to generate string enum types in this style