Last active
January 4, 2016 15:47
-
-
Save ko-sasaki/5ec66168eeb7775f2a11 to your computer and use it in GitHub Desktop.
typescript error message sample source code
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
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