UNPKG

926 BTypeScriptView Raw
1export declare const stopLocationUpdate: () => Promise<{
2 errMsg: string;
3}>;
4export declare const startLocationUpdateBackground: () => Promise<{
5 errMsg: string;
6}>;
7export declare const startLocationUpdate: () => Promise<{
8 errMsg: string;
9}>;
10export declare const openLocation: (options?: Partial<{
11 scale: number;
12}>) => Promise<any>;
13export declare const onLocationChangeError: () => Promise<{
14 errMsg: string;
15}>;
16export declare const onLocationChange: () => Promise<{
17 errMsg: string;
18}>;
19export declare const offLocationChangeError: () => Promise<{
20 errMsg: string;
21}>;
22export declare const offLocationChange: () => Promise<{
23 errMsg: string;
24}>;
25export { getLocation } from './getLocation';
26export declare const choosePoi: () => Promise<{
27 errMsg: string;
28}>;
29export declare const getFuzzyLocation: () => Promise<{
30 errMsg: string;
31}>;
32export { chooseLocation } from './chooseLocation';