Skip to content

Commit 520597a

Browse files
Merge pull request #16 from douglasjunior/types-definition
Fix export default type definition
2 parents 3e8dbe5 + cd8ca86 commit 520597a

File tree

2 files changed

+33
-28
lines changed

2 files changed

+33
-28
lines changed

index.d.ts

+32-28
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,36 @@
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-
}
181

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";
2425

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+
}
2833

29-
export function getCurrentPosition(
30-
options: GetCurrentPositionOptions
31-
): Promise<Location>;
34+
export default class GetLocation {
35+
static getCurrentPosition(options: GetCurrentPositionOptions): Promise<Location>;
3236
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"version": "2.1.0",
55
"description": "⚛ Simple to use React Native library to get device location for Android and iOS.",
66
"main": "index.js",
7+
"types": "index.d.ts",
78
"license": "MIT",
89
"private": false,
910
"repository": {

0 commit comments

Comments
 (0)