File tree 2 files changed +33
-28
lines changed
2 files changed +33
-28
lines changed Original file line number Diff line number Diff line change 1
- declare module "react-native-get-location" {
2
- export class Location {
3
- latitude : number ;
4
- longitude : number ;
5
- altitude : number ;
6
- accuracy : number ;
7
- speed : any ;
8
- time : number ;
9
- bearing ?: number ;
10
- provider ?: number ;
11
- verticalAccuracy ?: number ;
12
- course ?: number ;
13
- }
14
- export interface GetCurrentPositionOptions {
15
- enableHighAccuracy : boolean ;
16
- timeout : number ;
17
- }
18
1
19
- export type LocationErrorCode =
20
- | "CANCELLED"
21
- | "UNAVAILABLE"
22
- | "TIMEOUT"
23
- | "UNAUTHORIZED" ;
2
+ export class Location {
3
+ latitude : number ;
4
+ longitude : number ;
5
+ altitude : number ;
6
+ accuracy : number ;
7
+ speed : any ;
8
+ time : number ;
9
+ bearing ?: number ;
10
+ provider ?: number ;
11
+ verticalAccuracy ?: number ;
12
+ course ?: number ;
13
+ }
14
+
15
+ export interface GetCurrentPositionOptions {
16
+ enableHighAccuracy : boolean ;
17
+ timeout : number ;
18
+ }
19
+
20
+ export type LocationErrorCode =
21
+ | "CANCELLED"
22
+ | "UNAVAILABLE"
23
+ | "TIMEOUT"
24
+ | "UNAUTHORIZED" ;
24
25
25
- export class LocationError extends Error {
26
- code : LocationErrorCode ;
27
- }
26
+ export class LocationError extends Error {
27
+ code : LocationErrorCode ;
28
+ }
29
+
30
+ export class LocationError extends Error {
31
+ code : LocationErrorCode ;
32
+ }
28
33
29
- export function getCurrentPosition (
30
- options : GetCurrentPositionOptions
31
- ) : Promise < Location > ;
34
+ export default class GetLocation {
35
+ static getCurrentPosition ( options : GetCurrentPositionOptions ) : Promise < Location > ;
32
36
}
Original file line number Diff line number Diff line change 4
4
"version" : " 2.1.0" ,
5
5
"description" : " ⚛ Simple to use React Native library to get device location for Android and iOS." ,
6
6
"main" : " index.js" ,
7
+ "types" : " index.d.ts" ,
7
8
"license" : " MIT" ,
8
9
"private" : false ,
9
10
"repository" : {
You can’t perform that action at this time.
0 commit comments