@umituz/react-native-uuid 1.2.4 → 1.2.6
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.
- package/package.json +1 -1
- package/src/index.ts +6 -2
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -4,5 +4,9 @@
|
|
|
4
4
|
* Cross-platform UUID generation for React Native apps
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
export {
|
|
8
|
-
|
|
7
|
+
export {
|
|
8
|
+
generateUUID,
|
|
9
|
+
generateUUID as uuidv4,
|
|
10
|
+
generateUUID as generateCreationId,
|
|
11
|
+
} from "./infrastructure/utils/UUIDUtils";
|
|
12
|
+
export type { UUID } from "./types/UUID";
|