@@ -41,7 +41,7 @@ declare module L {
41
41
export function bounds ( points : Point [ ] ) : Bounds ;
42
42
43
43
44
- export interface BoundsStatic extends ClassStatic {
44
+ export interface BoundsStatic {
45
45
/**
46
46
* Creates a Bounds object from two coordinates (usually top-left and bottom-right
47
47
* corners).
@@ -1446,7 +1446,7 @@ declare namespace L {
1446
1446
*/
1447
1447
function latLng ( coords : LatLngExpression ) : LatLng ;
1448
1448
1449
- export interface LatLngStatic extends ClassStatic {
1449
+ export interface LatLngStatic {
1450
1450
/**
1451
1451
* Creates an object representing a geographical point with the given latitude
1452
1452
* and longitude.
@@ -1532,7 +1532,7 @@ declare namespace L {
1532
1532
*/
1533
1533
function latLngBounds ( latlngs : LatLngBoundsExpression ) : LatLngBounds ;
1534
1534
1535
- export interface LatLngBoundsStatic extends ClassStatic {
1535
+ export interface LatLngBoundsStatic {
1536
1536
/**
1537
1537
* Creates a LatLngBounds object by defining south-west and north-east corners
1538
1538
* of the rectangle.
@@ -3394,7 +3394,7 @@ declare namespace L {
3394
3394
*/
3395
3395
function point ( x : number , y : number , round ?: boolean ) : Point ;
3396
3396
3397
- export interface PointStatic extends ClassStatic {
3397
+ export interface PointStatic {
3398
3398
/**
3399
3399
* Creates a Point object with the given x and y coordinates. If optional round
3400
3400
* is set to true, rounds the x and y values.
@@ -4184,7 +4184,7 @@ declare namespace L {
4184
4184
}
4185
4185
4186
4186
declare namespace L {
4187
- export interface TransformationStatic extends ClassStatic {
4187
+ export interface TransformationStatic {
4188
4188
/**
4189
4189
* Creates a transformation object with the given coefficients.
4190
4190
*/
0 commit comments