Created
February 28, 2017 07:48
-
-
Save dupski/9096e94ae2d5713aa565d8e78fc475a3 to your computer and use it in GitHub Desktop.
Example of an ES6 Module with a default export
This file contains 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 default class Product { | |
name: string; | |
price: number; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment