leaflet-imageoverlay-rotated: Fix lint (#19406)

This commit is contained in:
Andy
2017-08-28 16:58:07 -07:00
committed by GitHub
parent 0de7fa4700
commit 2281dda897

View File

@@ -7,7 +7,7 @@
declare namespace L {
namespace ImageOverlay {
interface Rotated extends L.ImageOverlay {
interface Rotated extends ImageOverlay {
reposition(
topleft: LatLngExpression,
topright: LatLngExpression,
@@ -21,6 +21,6 @@ declare namespace L {
topleft: LatLngExpression,
topright: LatLngExpression,
bottomleft: LatLngExpression,
options?: ImageOverlayOptions): L.ImageOverlay.Rotated;
options?: ImageOverlayOptions): ImageOverlay.Rotated;
}
}