We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a4cc3 commit 829dfc8Copy full SHA for 829dfc8
index.d.ts
@@ -1,9 +1,9 @@
1
declare module 'react-native-geocoding' {
2
export default class Geocoder {
3
init(apiKey: string): void;
4
- get isInit(): boolean;
+ isInit(): boolean;
5
setApiKey(API_KEY: string): void;
6
- from(...params): Promise<void>;
+ from(...params: any[]): Promise<void>;
7
getFromLocation(address: string): Promise<any>;
8
getFromLatLng(lat: number, lng: number): Promise<any>;
9
}
0 commit comments