diff options
author | Bradley Kemp <bradleyjkemp@users.noreply.github.com> | 2018-10-19 13:55:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-19 13:55:51 +0100 |
commit | 67730b4e0b3100a7a6df925ef28606b71aa30a43 (patch) | |
tree | a7d56e248c6c9e3f2f558886b385d3798d80499a /typescript.html.markdown | |
parent | 9e2bd7c11bcfce42007c962eb8a9fbbeeb6f12e2 (diff) |
Add example of "implements" keyword
Diffstat (limited to 'typescript.html.markdown')
-rw-r--r-- | typescript.html.markdown | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/typescript.html.markdown b/typescript.html.markdown index db6579e2..9158f123 100644 --- a/typescript.html.markdown +++ b/typescript.html.markdown @@ -113,6 +113,13 @@ class Point { static origin = new Point(0, 0); } +// Classes can be explicitly marked as implementing an interface. +// Any missing properties will then cause an error at compile-time. +class PointPerson implements Person { + name: string + move() {} +} + let p1 = new Point(10, 20); let p2 = new Point(25); //y will be 0 |