@googlemaps/jest-mocks
Version:
[][npm-pkg]   [ • 1.72 kB
TypeScript
/**
* Copyright 2022 Google LLC. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export declare class LatLng implements google.maps.LatLng {
constructor(a: google.maps.LatLngLiteral | number, b?: boolean | number, c?: boolean);
equals: jest.Mock<any, any, any>;
lat: jest.Mock<any, any, any>;
lng: jest.Mock<any, any, any>;
toString: jest.Mock<any, any, any>;
toUrlValue: jest.Mock<any, any, any>;
toJSON: jest.Mock<any, any, any>;
}
export declare class LatLngBounds implements google.maps.LatLngBounds {
constructor(sw?: google.maps.LatLng | google.maps.LatLngLiteral, ne?: google.maps.LatLng | google.maps.LatLngLiteral);
contains: jest.Mock<any, any, any>;
equals: jest.Mock<any, any, any>;
extend: jest.Mock<any, any, any>;
getCenter: jest.Mock<any, any, any>;
getNorthEast: jest.Mock<any, any, any>;
getSouthWest: jest.Mock<any, any, any>;
intersects: jest.Mock<any, any, any>;
isEmpty: jest.Mock<any, any, any>;
toJSON: jest.Mock<any, any, any>;
toSpan: jest.Mock<any, any, any>;
toString: jest.Mock<any, any, any>;
toUrlValue: jest.Mock<any, any, any>;
union: jest.Mock<any, any, any>;
}