Skip to content

Instantly share code, notes, and snippets.

@ko-sasaki
Last active January 4, 2016 15:47
Show Gist options
  • Save ko-sasaki/5ec66168eeb7775f2a11 to your computer and use it in GitHub Desktop.
Save ko-sasaki/5ec66168eeb7775f2a11 to your computer and use it in GitHub Desktop.
typescript error message sample source code
class sample{
private a : any;
get getA(){
return this.a;
}
set setA(value){
this.a = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment