Created
April 7, 2019 18:04
-
-
Save stemmlerjs/2f901010d1a2169376c47481fc0bb77a to your computer and use it in GitHub Desktop.
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
| interface IUser { | |
| readonly name: string | |
| } | |
| class User extends Entity<IUser> { | |
| public readonly name: string; | |
| constructor (props: IUser) { | |
| super(props); | |
| this.name = props.name; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment