@lodev09/react-native-exify 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -112,7 +112,7 @@ val EXIFY_TAGS =
112
112
  arrayOf("double", ExifInterface.TAG_GPS_DEST_LONGITUDE),
113
113
  arrayOf("string", ExifInterface.TAG_GPS_DEST_LONGITUDE_REF),
114
114
  arrayOf("int", ExifInterface.TAG_GPS_DIFFERENTIAL),
115
- arrayOf("string", ExifInterface.TAG_GPS_H_POSITIONING_ERROR),
115
+ arrayOf("double", ExifInterface.TAG_GPS_H_POSITIONING_ERROR),
116
116
  arrayOf("double", ExifInterface.TAG_GPS_IMG_DIRECTION),
117
117
  arrayOf("string", ExifInterface.TAG_GPS_IMG_DIRECTION_REF),
118
118
  arrayOf("string", ExifInterface.TAG_GPS_LATITUDE_REF),
@@ -15,7 +15,7 @@ export interface ExifTags {
15
15
  GPSDifferential?: number;
16
16
  GPSDestLatitudeRef?: string;
17
17
  GPSDestDistanceRef?: string;
18
- GPSHPositioningError?: string;
18
+ GPSHPositioningError?: number;
19
19
  GPSDestDistance?: number;
20
20
  GPSDestBearing?: number;
21
21
  GPSDateStamp?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lodev09/react-native-exify",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Read and write exif data from/into an image",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
package/src/types.ts CHANGED
@@ -15,7 +15,7 @@ export interface ExifTags {
15
15
  GPSDifferential?: number;
16
16
  GPSDestLatitudeRef?: string;
17
17
  GPSDestDistanceRef?: string;
18
- GPSHPositioningError?: string;
18
+ GPSHPositioningError?: number;
19
19
  GPSDestDistance?: number;
20
20
  GPSDestBearing?: number;
21
21
  GPSDateStamp?: string;