Skip to content

Instantly share code, notes, and snippets.

@luixaviles
Created December 20, 2017 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luixaviles/c03154a51a668070c5b94bec4ba1f4d3 to your computer and use it in GitHub Desktop.
Save luixaviles/c03154a51a668070c5b94bec4ba1f4d3 to your computer and use it in GitHub Desktop.
export class User {
constructor(private name: string) {}
}
export class Message {
constructor(private from: User, private content: string) {}
}
export class ChatMessage extends Message{
constructor(from: User, content: string) {
super(from, content);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment