From 83d9597309ff7eefdb32ac58db1b0ca6c838bf60 Mon Sep 17 00:00:00 2001 From: Rafael Salguero Iturrios Date: Sat, 7 Jan 2017 18:58:36 -0700 Subject: [PATCH] x y properties on Point --- leaflet/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index fdaea84934..05950dc68c 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -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;