@umituz/react-native-ai-generation-content 1.17.73 → 1.17.74
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 +10 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -195,6 +195,10 @@ export {
|
|
|
195
195
|
isValidBase64,
|
|
196
196
|
getBase64Size,
|
|
197
197
|
getBase64SizeMB,
|
|
198
|
+
// Feature utils
|
|
199
|
+
prepareImage,
|
|
200
|
+
createDevCallbacks,
|
|
201
|
+
createFeatureUtils,
|
|
198
202
|
} from "./infrastructure/utils";
|
|
199
203
|
|
|
200
204
|
export type {
|
|
@@ -205,6 +209,12 @@ export type {
|
|
|
205
209
|
ValidateResultOptions,
|
|
206
210
|
PhotoInput,
|
|
207
211
|
PreparedImage,
|
|
212
|
+
// Feature utils types
|
|
213
|
+
ImageSelector,
|
|
214
|
+
VideoSaver,
|
|
215
|
+
CreditChecker,
|
|
216
|
+
AlertFunction,
|
|
217
|
+
FeatureUtilsConfig,
|
|
208
218
|
} from "./infrastructure/utils";
|
|
209
219
|
|
|
210
220
|
// =============================================================================
|