Last active
October 19, 2016 15:06
-
-
Save FabreFrederic/4d1aa2d5f9aaccbd1179ab82851afb80 to your computer and use it in GitHub Desktop.
Example of an enum class in Typescript. The enum returns a numeric value.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export enum Direction { | |
Left, | |
Right | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment