Skip to content

Instantly share code, notes, and snippets.

@FabreFrederic
Last active October 26, 2016 07:35
Show Gist options
  • Save FabreFrederic/5bb509739c2f37c855561ff80d57a10d to your computer and use it in GitHub Desktop.
Save FabreFrederic/5bb509739c2f37c855561ff80d57a10d to your computer and use it in GitHub Desktop.
Example of an enum class in Typescript. The enum returns a string value instead of a numeric value.
export enum ImprovedDirection {
Left = <any>'left',
Right = <any>'right'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment