mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03:00
Merge pull request #3313 from bradleyjkemp/patch-1
[typescript/en] Add example of "implements" keyword
This commit is contained in:
commit
efeb47da27
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user