@umituz/react-native-ai-generation-content 1.20.3 → 1.20.5
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/features/ai-hug/domain/types/ai-hug.types.ts +1 -16
- package/src/features/ai-hug/domain/types/index.ts +0 -6
- package/src/features/ai-hug/index.ts +2 -10
- package/src/features/ai-kiss/domain/types/ai-kiss.types.ts +1 -16
- package/src/features/ai-kiss/domain/types/index.ts +0 -6
- package/src/features/ai-kiss/index.ts +2 -10
- package/src/features/anime-selfie/domain/types/anime-selfie.types.ts +1 -20
- package/src/features/anime-selfie/domain/types/index.ts +0 -7
- package/src/features/anime-selfie/index.ts +2 -11
- package/src/features/face-swap/domain/types/face-swap.types.ts +0 -9
- package/src/features/face-swap/domain/types/index.ts +0 -5
- package/src/features/face-swap/index.ts +2 -6
- package/src/features/remove-background/domain/types/index.ts +0 -5
- package/src/features/remove-background/domain/types/remove-background.types.ts +0 -7
- package/src/features/remove-background/index.ts +2 -6
- package/src/features/remove-object/domain/types/index.ts +0 -6
- package/src/features/remove-object/domain/types/remove-object.types.ts +1 -16
- package/src/features/remove-object/index.ts +5 -9
- package/src/features/replace-background/domain/types/index.ts +0 -6
- package/src/features/replace-background/domain/types/replace-background.types.ts +0 -15
- package/src/features/replace-background/index.ts +6 -9
- package/src/features/upscaling/domain/types/upscale.types.ts +0 -12
- package/src/features/upscaling/index.ts +2 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-ai-generation-content",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.5",
|
|
4
4
|
"description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* AI Hug Feature Types
|
|
3
|
-
*
|
|
3
|
+
* Extends dual-image-video types for AI hug video generation
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type {
|
|
@@ -9,21 +9,6 @@ import type {
|
|
|
9
9
|
DualImageVideoTranslations,
|
|
10
10
|
} from "../../../shared/dual-image-video";
|
|
11
11
|
|
|
12
|
-
export interface AIHugOptions {
|
|
13
|
-
intensity?: "gentle" | "warm" | "tight";
|
|
14
|
-
preserveFaces?: boolean;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface AIHugRequest {
|
|
18
|
-
sourceImageUri: string;
|
|
19
|
-
targetImageUri: string;
|
|
20
|
-
sourceImageBase64?: string;
|
|
21
|
-
targetImageBase64?: string;
|
|
22
|
-
userId: string;
|
|
23
|
-
prompt?: string;
|
|
24
|
-
options?: AIHugOptions;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
12
|
export interface AIHugResult {
|
|
28
13
|
success: boolean;
|
|
29
14
|
videoUrl?: string;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
export * from "./presentation/components";
|
|
3
2
|
* AI Hug Feature
|
|
4
3
|
* Provider-agnostic AI hug video generation feature
|
|
5
4
|
*/
|
|
6
5
|
|
|
7
6
|
// Domain Types
|
|
8
7
|
export type {
|
|
9
|
-
AIHugOptions,
|
|
10
|
-
AIHugRequest,
|
|
11
8
|
AIHugResult,
|
|
12
9
|
AIHugFeatureState,
|
|
13
10
|
AIHugTranslations,
|
|
@@ -16,12 +13,7 @@ export type {
|
|
|
16
13
|
} from "./domain";
|
|
17
14
|
|
|
18
15
|
// Presentation Hooks
|
|
19
|
-
export { useAIHugFeature } from "./presentation";
|
|
20
|
-
export type {
|
|
21
|
-
UseAIHugFeatureProps,
|
|
22
|
-
UseAIHugFeatureReturn,
|
|
23
|
-
} from "./presentation";
|
|
16
|
+
export { useAIHugFeature, type UseAIHugFeatureProps } from "./presentation";
|
|
24
17
|
|
|
25
18
|
// Presentation Components
|
|
26
|
-
export { AIHugFeature } from "./presentation";
|
|
27
|
-
export type { AIHugFeatureProps } from "./presentation";
|
|
19
|
+
export { AIHugFeature, type AIHugFeatureProps } from "./presentation";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* AI Kiss Feature Types
|
|
3
|
-
*
|
|
3
|
+
* Extends dual-image-video types for AI kiss video generation
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type {
|
|
@@ -9,21 +9,6 @@ import type {
|
|
|
9
9
|
DualImageVideoTranslations,
|
|
10
10
|
} from "../../../shared/dual-image-video";
|
|
11
11
|
|
|
12
|
-
export interface AIKissOptions {
|
|
13
|
-
style?: "romantic" | "cheek" | "forehead";
|
|
14
|
-
preserveFaces?: boolean;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface AIKissRequest {
|
|
18
|
-
sourceImageUri: string;
|
|
19
|
-
targetImageUri: string;
|
|
20
|
-
sourceImageBase64?: string;
|
|
21
|
-
targetImageBase64?: string;
|
|
22
|
-
userId: string;
|
|
23
|
-
prompt?: string;
|
|
24
|
-
options?: AIKissOptions;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
12
|
export interface AIKissResult {
|
|
28
13
|
success: boolean;
|
|
29
14
|
videoUrl?: string;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
export * from "./presentation/components";
|
|
3
2
|
* AI Kiss Feature
|
|
4
3
|
* Provider-agnostic AI kiss video generation feature
|
|
5
4
|
*/
|
|
6
5
|
|
|
7
6
|
// Domain Types
|
|
8
7
|
export type {
|
|
9
|
-
AIKissOptions,
|
|
10
|
-
AIKissRequest,
|
|
11
8
|
AIKissResult,
|
|
12
9
|
AIKissFeatureState,
|
|
13
10
|
AIKissTranslations,
|
|
@@ -16,12 +13,7 @@ export type {
|
|
|
16
13
|
} from "./domain";
|
|
17
14
|
|
|
18
15
|
// Presentation Hooks
|
|
19
|
-
export { useAIKissFeature } from "./presentation";
|
|
20
|
-
export type {
|
|
21
|
-
UseAIKissFeatureProps,
|
|
22
|
-
UseAIKissFeatureReturn,
|
|
23
|
-
} from "./presentation";
|
|
16
|
+
export { useAIKissFeature, type UseAIKissFeatureProps } from "./presentation";
|
|
24
17
|
|
|
25
18
|
// Presentation Components
|
|
26
|
-
export { AIKissFeature } from "./presentation";
|
|
27
|
-
export type { AIKissFeatureProps } from "./presentation";
|
|
19
|
+
export { AIKissFeature, type AIKissFeatureProps } from "./presentation";
|
|
@@ -1,23 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Anime Selfie Feature Types
|
|
3
|
-
* Request, Result, Config types for anime selfie generation
|
|
4
3
|
*/
|
|
5
4
|
|
|
6
5
|
export type AnimeSelfieStyle = "anime" | "manga" | "cartoon" | "disney" | "pixar";
|
|
7
6
|
|
|
8
|
-
export interface AnimeSelfieOptions {
|
|
9
|
-
style?: AnimeSelfieStyle;
|
|
10
|
-
preserveBackground?: boolean;
|
|
11
|
-
enhanceDetails?: boolean;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export interface AnimeSelfieRequest {
|
|
15
|
-
imageUri: string;
|
|
16
|
-
imageBase64?: string;
|
|
17
|
-
userId: string;
|
|
18
|
-
options?: AnimeSelfieOptions;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
7
|
export interface AnimeSelfieResult {
|
|
22
8
|
success: boolean;
|
|
23
9
|
imageUrl?: string;
|
|
@@ -27,11 +13,6 @@ export interface AnimeSelfieResult {
|
|
|
27
13
|
creationId?: string;
|
|
28
14
|
}
|
|
29
15
|
|
|
30
|
-
export interface AnimeSelfieProcessingStartData {
|
|
31
|
-
creationId: string;
|
|
32
|
-
imageUri: string;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
16
|
export interface AnimeSelfieFeatureState {
|
|
36
17
|
imageUri: string | null;
|
|
37
18
|
processedUrl: string | null;
|
|
@@ -65,7 +46,7 @@ export interface AnimeSelfieFeatureConfig {
|
|
|
65
46
|
extractResult?: AnimeSelfieResultExtractor;
|
|
66
47
|
prepareImage: (imageUri: string) => Promise<string>;
|
|
67
48
|
onImageSelect?: (uri: string) => void;
|
|
68
|
-
onProcessingStart?: (data:
|
|
49
|
+
onProcessingStart?: (data: { creationId: string; imageUri: string }) => void;
|
|
69
50
|
onProcessingComplete?: (result: AnimeSelfieResult) => void;
|
|
70
51
|
onError?: (error: string, creationId?: string) => void;
|
|
71
52
|
}
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Anime Selfie Domain Types Index
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
1
|
export type {
|
|
6
2
|
AnimeSelfieStyle,
|
|
7
|
-
AnimeSelfieOptions,
|
|
8
|
-
AnimeSelfieRequest,
|
|
9
3
|
AnimeSelfieResult,
|
|
10
|
-
AnimeSelfieProcessingStartData,
|
|
11
4
|
AnimeSelfieFeatureState,
|
|
12
5
|
AnimeSelfieTranslations,
|
|
13
6
|
AnimeSelfieResultExtractor,
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
export * from "./presentation/components";
|
|
3
2
|
* Anime Selfie Feature
|
|
4
3
|
* Provider-agnostic anime selfie generation feature
|
|
5
4
|
*/
|
|
@@ -7,10 +6,7 @@ export * from "./presentation/components";
|
|
|
7
6
|
// Domain Types
|
|
8
7
|
export type {
|
|
9
8
|
AnimeSelfieStyle,
|
|
10
|
-
AnimeSelfieOptions,
|
|
11
|
-
AnimeSelfieRequest,
|
|
12
9
|
AnimeSelfieResult,
|
|
13
|
-
AnimeSelfieProcessingStartData,
|
|
14
10
|
AnimeSelfieFeatureState,
|
|
15
11
|
AnimeSelfieTranslations,
|
|
16
12
|
AnimeSelfieFeatureConfig,
|
|
@@ -18,12 +14,7 @@ export type {
|
|
|
18
14
|
} from "./domain";
|
|
19
15
|
|
|
20
16
|
// Presentation Hooks
|
|
21
|
-
export { useAnimeSelfieFeature } from "./presentation";
|
|
22
|
-
export type {
|
|
23
|
-
UseAnimeSelfieFeatureProps,
|
|
24
|
-
UseAnimeSelfieFeatureReturn,
|
|
25
|
-
} from "./presentation";
|
|
17
|
+
export { useAnimeSelfieFeature, type UseAnimeSelfieFeatureProps } from "./presentation";
|
|
26
18
|
|
|
27
19
|
// Presentation Components
|
|
28
|
-
export { AnimeSelfieFeature } from "./presentation";
|
|
29
|
-
export type { AnimeSelfieFeatureProps } from "./presentation";
|
|
20
|
+
export { AnimeSelfieFeature, type AnimeSelfieFeatureProps } from "./presentation";
|
|
@@ -15,15 +15,6 @@ export interface FaceSwapOptions {
|
|
|
15
15
|
preserveSkinTone?: boolean;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
export interface FaceSwapRequest {
|
|
19
|
-
sourceImageUri: string;
|
|
20
|
-
targetImageUri: string;
|
|
21
|
-
sourceImageBase64?: string;
|
|
22
|
-
targetImageBase64?: string;
|
|
23
|
-
userId: string;
|
|
24
|
-
options?: FaceSwapOptions;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
18
|
export type FaceSwapResult = BaseImageResult;
|
|
28
19
|
|
|
29
20
|
export type FaceSwapFeatureState = BaseDualImageState;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
export * from "./presentation/components";
|
|
3
2
|
* Face Swap Feature
|
|
4
3
|
* Provider-agnostic face swap generation feature
|
|
5
4
|
*/
|
|
@@ -7,7 +6,6 @@ export * from "./presentation/components";
|
|
|
7
6
|
// Domain Types
|
|
8
7
|
export type {
|
|
9
8
|
FaceSwapOptions,
|
|
10
|
-
FaceSwapRequest,
|
|
11
9
|
FaceSwapResult,
|
|
12
10
|
FaceSwapFeatureState,
|
|
13
11
|
FaceSwapTranslations,
|
|
@@ -15,9 +13,7 @@ export type {
|
|
|
15
13
|
} from "./domain";
|
|
16
14
|
|
|
17
15
|
// Presentation Hooks
|
|
18
|
-
export { useFaceSwapFeature } from "./presentation";
|
|
19
|
-
export type { UseFaceSwapFeatureProps } from "./presentation";
|
|
16
|
+
export { useFaceSwapFeature, type UseFaceSwapFeatureProps } from "./presentation";
|
|
20
17
|
|
|
21
18
|
// Presentation Components
|
|
22
|
-
export { FaceSwapFeature } from "./presentation";
|
|
23
|
-
export type { FaceSwapFeatureProps } from "./presentation";
|
|
19
|
+
export { FaceSwapFeature, type FaceSwapFeatureProps } from "./presentation";
|
|
@@ -16,13 +16,6 @@ export interface RemoveBackgroundOptions {
|
|
|
16
16
|
backgroundColor?: string;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
export interface RemoveBackgroundRequest {
|
|
20
|
-
imageUri: string;
|
|
21
|
-
imageBase64?: string;
|
|
22
|
-
userId: string;
|
|
23
|
-
options?: RemoveBackgroundOptions;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
19
|
export type RemoveBackgroundResult = BaseImageResult;
|
|
27
20
|
|
|
28
21
|
export type RemoveBackgroundFeatureState = BaseSingleImageState;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
export * from "./presentation/components";
|
|
3
2
|
* Remove Background Feature
|
|
4
3
|
* Provider-agnostic background removal feature
|
|
5
4
|
*/
|
|
@@ -7,7 +6,6 @@ export * from "./presentation/components";
|
|
|
7
6
|
// Domain Types
|
|
8
7
|
export type {
|
|
9
8
|
RemoveBackgroundOptions,
|
|
10
|
-
RemoveBackgroundRequest,
|
|
11
9
|
RemoveBackgroundResult,
|
|
12
10
|
RemoveBackgroundFeatureState,
|
|
13
11
|
RemoveBackgroundTranslations,
|
|
@@ -15,9 +13,7 @@ export type {
|
|
|
15
13
|
} from "./domain";
|
|
16
14
|
|
|
17
15
|
// Presentation Hooks
|
|
18
|
-
export { useRemoveBackgroundFeature } from "./presentation";
|
|
19
|
-
export type { UseRemoveBackgroundFeatureProps } from "./presentation";
|
|
16
|
+
export { useRemoveBackgroundFeature, type UseRemoveBackgroundFeatureProps } from "./presentation";
|
|
20
17
|
|
|
21
18
|
// Presentation Components
|
|
22
|
-
export { RemoveBackgroundFeature } from "./presentation";
|
|
23
|
-
export type { RemoveBackgroundFeatureProps } from "./presentation";
|
|
19
|
+
export { RemoveBackgroundFeature, type RemoveBackgroundFeatureProps } from "./presentation";
|
|
@@ -1,23 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Remove Object Feature Types
|
|
3
|
-
*
|
|
3
|
+
* Types for object removal (inpainting)
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export interface RemoveObjectOptions {
|
|
7
|
-
prompt?: string;
|
|
8
|
-
maskBase64?: string;
|
|
9
|
-
fillBackground?: boolean;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export interface RemoveObjectRequest {
|
|
13
|
-
imageUri: string;
|
|
14
|
-
imageBase64?: string;
|
|
15
|
-
maskBase64?: string;
|
|
16
|
-
prompt?: string;
|
|
17
|
-
userId: string;
|
|
18
|
-
options?: RemoveObjectOptions;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
6
|
export interface RemoveObjectResult {
|
|
22
7
|
success: boolean;
|
|
23
8
|
imageUrl?: string;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
export * from "./presentation/components";
|
|
3
2
|
* Remove Object Feature
|
|
4
3
|
* Provider-agnostic object removal (inpainting) feature
|
|
5
4
|
*/
|
|
6
5
|
|
|
7
6
|
// Domain Types
|
|
8
7
|
export type {
|
|
9
|
-
RemoveObjectOptions,
|
|
10
|
-
RemoveObjectRequest,
|
|
11
8
|
RemoveObjectResult,
|
|
12
9
|
RemoveObjectFeatureState,
|
|
13
10
|
RemoveObjectTranslations,
|
|
@@ -16,12 +13,11 @@ export type {
|
|
|
16
13
|
} from "./domain";
|
|
17
14
|
|
|
18
15
|
// Presentation Hooks
|
|
19
|
-
export {
|
|
20
|
-
|
|
21
|
-
UseRemoveObjectFeatureProps,
|
|
22
|
-
UseRemoveObjectFeatureReturn,
|
|
16
|
+
export {
|
|
17
|
+
useRemoveObjectFeature,
|
|
18
|
+
type UseRemoveObjectFeatureProps,
|
|
19
|
+
type UseRemoveObjectFeatureReturn,
|
|
23
20
|
} from "./presentation";
|
|
24
21
|
|
|
25
22
|
// Presentation Components
|
|
26
|
-
export { RemoveObjectFeature } from "./presentation";
|
|
27
|
-
export type { RemoveObjectFeatureProps } from "./presentation";
|
|
23
|
+
export { RemoveObjectFeature, type RemoveObjectFeatureProps } from "./presentation";
|
|
@@ -16,21 +16,6 @@ export type ReplaceBackgroundMode =
|
|
|
16
16
|
| "creative-scene"
|
|
17
17
|
| "solid-color";
|
|
18
18
|
|
|
19
|
-
export interface ReplaceBackgroundOptions {
|
|
20
|
-
mode?: ReplaceBackgroundMode;
|
|
21
|
-
prompt?: string;
|
|
22
|
-
backgroundColor?: string;
|
|
23
|
-
blurIntensity?: number;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface ReplaceBackgroundRequest {
|
|
27
|
-
imageUri: string;
|
|
28
|
-
imageBase64?: string;
|
|
29
|
-
userId: string;
|
|
30
|
-
prompt?: string;
|
|
31
|
-
options?: ReplaceBackgroundOptions;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
19
|
export type ReplaceBackgroundResult = BaseImageResult;
|
|
35
20
|
|
|
36
21
|
export interface ReplaceBackgroundFeatureState extends BaseImageWithPromptState {
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Replace Background Feature
|
|
3
|
-
* AI-powered background replacement feature
|
|
3
|
+
* AI-powered background replacement feature
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
// Domain Types
|
|
7
7
|
export type {
|
|
8
8
|
ReplaceBackgroundMode,
|
|
9
|
-
ReplaceBackgroundOptions,
|
|
10
|
-
ReplaceBackgroundRequest,
|
|
11
9
|
ReplaceBackgroundResult,
|
|
12
10
|
ReplaceBackgroundFeatureState,
|
|
13
11
|
ReplaceBackgroundTranslations,
|
|
@@ -15,12 +13,11 @@ export type {
|
|
|
15
13
|
} from "./domain/types";
|
|
16
14
|
|
|
17
15
|
// Presentation Components
|
|
18
|
-
export { ReplaceBackgroundFeature } from "./presentation/components";
|
|
19
|
-
export type { ReplaceBackgroundFeatureProps } from "./presentation/components";
|
|
16
|
+
export { ReplaceBackgroundFeature, type ReplaceBackgroundFeatureProps } from "./presentation/components";
|
|
20
17
|
|
|
21
18
|
// Presentation Hooks
|
|
22
|
-
export {
|
|
23
|
-
|
|
24
|
-
UseReplaceBackgroundFeatureProps,
|
|
25
|
-
UseReplaceBackgroundFeatureReturn,
|
|
19
|
+
export {
|
|
20
|
+
useReplaceBackgroundFeature,
|
|
21
|
+
type UseReplaceBackgroundFeatureProps,
|
|
22
|
+
type UseReplaceBackgroundFeatureReturn,
|
|
26
23
|
} from "./presentation/hooks";
|
|
@@ -12,18 +12,6 @@ import type {
|
|
|
12
12
|
|
|
13
13
|
export type UpscaleScaleFactor = 2 | 4 | 8;
|
|
14
14
|
|
|
15
|
-
export interface UpscaleOptions {
|
|
16
|
-
scaleFactor?: UpscaleScaleFactor;
|
|
17
|
-
enhanceFaces?: boolean;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export interface UpscaleRequest {
|
|
21
|
-
imageUri: string;
|
|
22
|
-
imageBase64?: string;
|
|
23
|
-
userId: string;
|
|
24
|
-
options?: UpscaleOptions;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
15
|
export type UpscaleResult = BaseImageResult;
|
|
28
16
|
|
|
29
17
|
export type UpscaleFeatureState = BaseSingleImageState;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
export * from "./presentation/components";
|
|
3
2
|
* Upscaling Feature
|
|
4
3
|
* Provider-agnostic image upscaling feature
|
|
5
4
|
*/
|
|
@@ -7,8 +6,6 @@ export * from "./presentation/components";
|
|
|
7
6
|
// Domain Types
|
|
8
7
|
export type {
|
|
9
8
|
UpscaleScaleFactor,
|
|
10
|
-
UpscaleOptions,
|
|
11
|
-
UpscaleRequest,
|
|
12
9
|
UpscaleResult,
|
|
13
10
|
UpscaleFeatureState,
|
|
14
11
|
UpscaleTranslations,
|
|
@@ -16,12 +13,8 @@ export type {
|
|
|
16
13
|
} from "./domain";
|
|
17
14
|
|
|
18
15
|
// Presentation Hooks
|
|
19
|
-
export { useUpscaleFeature } from "./presentation";
|
|
20
|
-
export type { UseUpscaleFeatureProps } from "./presentation";
|
|
16
|
+
export { useUpscaleFeature, type UseUpscaleFeatureProps } from "./presentation";
|
|
21
17
|
|
|
22
18
|
// Presentation Components
|
|
23
19
|
export { UpscaleFeature, UpscaleResultView } from "./presentation";
|
|
24
|
-
export type {
|
|
25
|
-
UpscaleFeatureProps,
|
|
26
|
-
UpscaleResultViewProps,
|
|
27
|
-
} from "./presentation";
|
|
20
|
+
export type { UpscaleFeatureProps, UpscaleResultViewProps } from "./presentation";
|