Skip to content

Instantly share code, notes, and snippets.

@stemmlerjs
Created April 7, 2019 18:04
Show Gist options
  • Select an option

  • Save stemmlerjs/2f901010d1a2169376c47481fc0bb77a to your computer and use it in GitHub Desktop.

Select an option

Save stemmlerjs/2f901010d1a2169376c47481fc0bb77a to your computer and use it in GitHub Desktop.
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