@umituz/react-native-ai-generation-content 1.17.35 → 1.17.36
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 +14 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -337,6 +337,20 @@ export type {
|
|
|
337
337
|
StyleOption,
|
|
338
338
|
AspectRatioOption,
|
|
339
339
|
DurationValue,
|
|
340
|
+
// Selector Factories
|
|
341
|
+
AspectRatioTranslations,
|
|
342
|
+
DurationOption,
|
|
343
|
+
StyleTranslations,
|
|
344
|
+
} from "./presentation/components";
|
|
345
|
+
|
|
346
|
+
// Selector Factories
|
|
347
|
+
export {
|
|
348
|
+
createAspectRatioOptions,
|
|
349
|
+
createDurationOptions,
|
|
350
|
+
createStyleOptions,
|
|
351
|
+
createStyleOptionsFromConfig,
|
|
352
|
+
ASPECT_RATIO_IDS,
|
|
353
|
+
COMMON_DURATIONS,
|
|
340
354
|
} from "./presentation/components";
|
|
341
355
|
|
|
342
356
|
// =============================================================================
|