x y properties on Point

This commit is contained in:
Rafael Salguero Iturrios
2017-01-07 18:58:36 -07:00
committed by GitHub
parent df8ef42bab
commit 83d9597309
+2
View File
@@ -186,6 +186,8 @@ declare namespace L {
equals(otherPoint: PointExpression): boolean;
contains(otherPoint: PointExpression): boolean;
toString(): string;
x: number;
y: number;
}
type PointExpression = Point | PointTuple;