ugcinc-render 1.8.142 → 1.8.144
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/dist/index.d.mts +120 -1
- package/dist/index.d.ts +120 -1
- package/dist/index.js +926 -317
- package/dist/index.mjs +916 -309
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -967,6 +967,125 @@ declare function validatePublicInput(input: InstagramDmPublicInput): ValidationE
|
|
|
967
967
|
*/
|
|
968
968
|
declare function convertPublicToProps(input: InstagramDmPublicInput): InstagramDmCompositionProps;
|
|
969
969
|
|
|
970
|
+
/**
|
|
971
|
+
* iMessage DM Composition Types
|
|
972
|
+
*
|
|
973
|
+
* Types for the iMessage DM conversation composition.
|
|
974
|
+
*/
|
|
975
|
+
|
|
976
|
+
/** Message sender type */
|
|
977
|
+
type ImMessageSender = 'user' | 'recipient';
|
|
978
|
+
/** Message in the conversation */
|
|
979
|
+
interface ImMessage {
|
|
980
|
+
id: string;
|
|
981
|
+
sender: ImMessageSender;
|
|
982
|
+
text: string;
|
|
983
|
+
/** Group with previous message (no gap, continuous bubble feel) */
|
|
984
|
+
groupWithPrevious?: boolean;
|
|
985
|
+
}
|
|
986
|
+
/**
|
|
987
|
+
* iMessage DM Composition Props
|
|
988
|
+
*/
|
|
989
|
+
interface IMessageDmCompositionProps {
|
|
990
|
+
width?: number;
|
|
991
|
+
height?: number;
|
|
992
|
+
durationInFrames?: number;
|
|
993
|
+
fps?: number;
|
|
994
|
+
showDebugOverlay?: boolean;
|
|
995
|
+
referenceImageUrl?: string;
|
|
996
|
+
showReferenceImage?: boolean;
|
|
997
|
+
referenceOpacity?: number;
|
|
998
|
+
headerTop?: number;
|
|
999
|
+
headerBottom?: number;
|
|
1000
|
+
headerBackgroundColor?: string;
|
|
1001
|
+
timeTop?: number;
|
|
1002
|
+
timeBottom?: number;
|
|
1003
|
+
timeLeft?: number;
|
|
1004
|
+
timeRight?: number;
|
|
1005
|
+
timeFontSize?: number;
|
|
1006
|
+
timeLetterSpacing?: number;
|
|
1007
|
+
timeColor?: string;
|
|
1008
|
+
timeText?: string;
|
|
1009
|
+
noNotiTop?: number;
|
|
1010
|
+
noNotiBottom?: number;
|
|
1011
|
+
noNotiLeft?: number;
|
|
1012
|
+
noNotiRight?: number;
|
|
1013
|
+
cellularTop?: number;
|
|
1014
|
+
cellularBottom?: number;
|
|
1015
|
+
cellularLeft?: number;
|
|
1016
|
+
cellularRight?: number;
|
|
1017
|
+
wifiTop?: number;
|
|
1018
|
+
wifiBottom?: number;
|
|
1019
|
+
wifiLeft?: number;
|
|
1020
|
+
wifiRight?: number;
|
|
1021
|
+
batteryTop?: number;
|
|
1022
|
+
batteryBottom?: number;
|
|
1023
|
+
batteryLeft?: number;
|
|
1024
|
+
batteryRight?: number;
|
|
1025
|
+
dividerLineY?: number;
|
|
1026
|
+
dividerLineColor?: string;
|
|
1027
|
+
backgroundColor?: string;
|
|
1028
|
+
plusButtonTop?: number;
|
|
1029
|
+
plusButtonBottom?: number;
|
|
1030
|
+
plusButtonLeft?: number;
|
|
1031
|
+
plusButtonRight?: number;
|
|
1032
|
+
footerTop?: number;
|
|
1033
|
+
footerBottom?: number;
|
|
1034
|
+
footerLeft?: number;
|
|
1035
|
+
footerRight?: number;
|
|
1036
|
+
footerBgColor?: string;
|
|
1037
|
+
footerBorderRadius?: number;
|
|
1038
|
+
footerBorderColor?: string;
|
|
1039
|
+
footerBorderWidth?: number;
|
|
1040
|
+
messageTextTop?: number;
|
|
1041
|
+
messageTextBottom?: number;
|
|
1042
|
+
messageTextLeft?: number;
|
|
1043
|
+
messageTextRight?: number;
|
|
1044
|
+
messageTextFontSize?: number;
|
|
1045
|
+
messageTextLetterSpacing?: number;
|
|
1046
|
+
messageTextColor?: string;
|
|
1047
|
+
messageText?: string;
|
|
1048
|
+
homeIndicatorTop?: number;
|
|
1049
|
+
homeIndicatorBottom?: number;
|
|
1050
|
+
homeIndicatorLeft?: number;
|
|
1051
|
+
homeIndicatorRight?: number;
|
|
1052
|
+
homeIndicatorColor?: string;
|
|
1053
|
+
senderBubbleColor?: string;
|
|
1054
|
+
recipientBubbleColor?: string;
|
|
1055
|
+
bubbleTextColor?: string;
|
|
1056
|
+
bubbleTextFontSize?: number;
|
|
1057
|
+
bubbleTextLetterSpacing?: number;
|
|
1058
|
+
bubbleBorderRadius?: number;
|
|
1059
|
+
bubblePaddingX?: number;
|
|
1060
|
+
bubblePaddingY?: number;
|
|
1061
|
+
messageGapSameUser?: number;
|
|
1062
|
+
messageGapDifferentUser?: number;
|
|
1063
|
+
sentMessagePaddingLeft?: number;
|
|
1064
|
+
sentMessagePaddingRight?: number;
|
|
1065
|
+
receivedMessagePaddingLeft?: number;
|
|
1066
|
+
receivedMessagePaddingRight?: number;
|
|
1067
|
+
multiLineSentMessagePaddingLeft?: number;
|
|
1068
|
+
multiLineReceivedMessagePaddingRight?: number;
|
|
1069
|
+
messagesAnchorY?: number;
|
|
1070
|
+
messages?: ImMessage[];
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* iMessage DM Composition
|
|
1075
|
+
*
|
|
1076
|
+
* A fully parameterized iMessage DM conversation renderer.
|
|
1077
|
+
* Uses ImageEditorComposition for rendering, with props converted to elements.
|
|
1078
|
+
*/
|
|
1079
|
+
|
|
1080
|
+
/**
|
|
1081
|
+
* Default composition props for registration
|
|
1082
|
+
*/
|
|
1083
|
+
declare const defaultIMessageDmProps: IMessageDmCompositionProps;
|
|
1084
|
+
/**
|
|
1085
|
+
* iMessage DM Composition Component
|
|
1086
|
+
*/
|
|
1087
|
+
declare const IMessageDmComposition: React.FC<IMessageDmCompositionProps>;
|
|
1088
|
+
|
|
970
1089
|
/**
|
|
971
1090
|
* Platform-agnostic messaging types
|
|
972
1091
|
*
|
|
@@ -1444,4 +1563,4 @@ declare function useResolvedPositions(elements: ImageEditorElement[], textValues
|
|
|
1444
1563
|
|
|
1445
1564
|
declare const RenderRoot: React.FC;
|
|
1446
1565
|
|
|
1447
|
-
export { type Acceleration, type AudioConfig, type AudioSegment, AutoCaptionComposition, AutoCaptionCompositionProps, AutoCaptionCompositionWithVideo, type BaseBubbleStyle, type BaseEditorConfig, type BaseMessage, type BaseMessageType, type BaseSegment, type BlendMode, BorderRadiusConfig, type BubbleRadii, CaptionOverlay, CaptionOverlayProps, type Channel, type ColorFilterConfig, type ColorShiftConfig, type CropConfig, type CuttingConfig, DEDUPLICATION_LEVELS, type DeduplicationConfig, type DeduplicationInput, type DeduplicationLevel, type DiagonalFilterConfig, type DiagonalFilterType, DynamicCropConfig, type EditorConfig, type EditorSegment, type EnhanceLevel, type EnhancementConfig, FitMode, FontWeight, type FrameManipulationConfig, type GifOverlayConfig, type GifSource, type GradientColor, type GradientOverlayConfig, type IgDmMessage, type IgDmSender, type IgDmTheme, type IgTheme, ImageEditorComposition, type ImageEditorCompositionProps, type ImageEditorConfig, ImageEditorElement, ImageElement, type ImageElementProps, type ImageMessage, type ImageSegment, type ImageSequenceSegment, InstagramDmComposition, type InstagramDmCompositionProps, type InstagramDmPublicInput, LEVEL_1_CONFIG, LEVEL_2_CONFIG, LEVEL_3_CONFIG, LEVEL_4_CONFIG, LEVEL_5_CONFIG, type LensCorrectionConfig, MediaBubble, type MediaBubbleProps, type Message, MessageBubble, type MessageBubbleProps, type MessageGroup, type MessageOrTyping, type MessagePosition, type MessageReaction, type MessageSender, type MobileEncodingConfig, type ParticleOverlayConfig, type PhoneConfig, type PhoneModel, type PhoneType, type PictureSegment, PositionResolutionResult, type PositionedMessage, ProfilePic, type ProfilePicProps, Reaction, type ReactionProps, type ReadReceipt, type ReadReceiptState, RelativePositionConfigX, RelativePositionConfigY, RenderRoot, ScreenshotAnimation, ScreenshotAnimationProps, type Segment, SegmentType, type SpeedConfig, type StaticSegment, TYPING_ANIMATION, TextElement, type TextElementProps, type TextMessage, type TextSegment, TextStyleProperties, TimeValue, type TraceRemovalConfig, TypingIndicator, type TypingIndicatorProps, type TypingIndicatorStyle, type TypingMessage, type UserProfile, type ValidationError, type VideoCodec, VideoEditorComposition, type VideoEditorCompositionProps, type VideoEditorConfig, VideoElement, type VideoElementProps, type VideoExtension, type VideoSegment, type VideoSequenceSegment, type VisualAdjustmentsConfig, type VisualSegment, type VisualSegmentUnion, bubbleRadiiToCss, calculateBubbleRadii, convertPublicToProps, defaultInstagramDmProps, flattenGroups, groupMessages, isDeduplicationLevel, resolveDeduplicationConfig, useFontsLoaded, useImageLoader, useImagePreloader, useResolvedPositions, validatePublicInput };
|
|
1566
|
+
export { type Acceleration, type AudioConfig, type AudioSegment, AutoCaptionComposition, AutoCaptionCompositionProps, AutoCaptionCompositionWithVideo, type BaseBubbleStyle, type BaseEditorConfig, type BaseMessage, type BaseMessageType, type BaseSegment, type BlendMode, BorderRadiusConfig, type BubbleRadii, CaptionOverlay, CaptionOverlayProps, type Channel, type ColorFilterConfig, type ColorShiftConfig, type CropConfig, type CuttingConfig, DEDUPLICATION_LEVELS, type DeduplicationConfig, type DeduplicationInput, type DeduplicationLevel, type DiagonalFilterConfig, type DiagonalFilterType, DynamicCropConfig, type EditorConfig, type EditorSegment, type EnhanceLevel, type EnhancementConfig, FitMode, FontWeight, type FrameManipulationConfig, type GifOverlayConfig, type GifSource, type GradientColor, type GradientOverlayConfig, IMessageDmComposition, type IMessageDmCompositionProps, type IgDmMessage, type IgDmSender, type IgDmTheme, type IgTheme, type ImMessage, type ImMessageSender, ImageEditorComposition, type ImageEditorCompositionProps, type ImageEditorConfig, ImageEditorElement, ImageElement, type ImageElementProps, type ImageMessage, type ImageSegment, type ImageSequenceSegment, InstagramDmComposition, type InstagramDmCompositionProps, type InstagramDmPublicInput, LEVEL_1_CONFIG, LEVEL_2_CONFIG, LEVEL_3_CONFIG, LEVEL_4_CONFIG, LEVEL_5_CONFIG, type LensCorrectionConfig, MediaBubble, type MediaBubbleProps, type Message, MessageBubble, type MessageBubbleProps, type MessageGroup, type MessageOrTyping, type MessagePosition, type MessageReaction, type MessageSender, type MobileEncodingConfig, type ParticleOverlayConfig, type PhoneConfig, type PhoneModel, type PhoneType, type PictureSegment, PositionResolutionResult, type PositionedMessage, ProfilePic, type ProfilePicProps, Reaction, type ReactionProps, type ReadReceipt, type ReadReceiptState, RelativePositionConfigX, RelativePositionConfigY, RenderRoot, ScreenshotAnimation, ScreenshotAnimationProps, type Segment, SegmentType, type SpeedConfig, type StaticSegment, TYPING_ANIMATION, TextElement, type TextElementProps, type TextMessage, type TextSegment, TextStyleProperties, TimeValue, type TraceRemovalConfig, TypingIndicator, type TypingIndicatorProps, type TypingIndicatorStyle, type TypingMessage, type UserProfile, type ValidationError, type VideoCodec, VideoEditorComposition, type VideoEditorCompositionProps, type VideoEditorConfig, VideoElement, type VideoElementProps, type VideoExtension, type VideoSegment, type VideoSequenceSegment, type VisualAdjustmentsConfig, type VisualSegment, type VisualSegmentUnion, bubbleRadiiToCss, calculateBubbleRadii, convertPublicToProps, defaultIMessageDmProps, defaultInstagramDmProps, flattenGroups, groupMessages, isDeduplicationLevel, resolveDeduplicationConfig, useFontsLoaded, useImageLoader, useImagePreloader, useResolvedPositions, validatePublicInput };
|
package/dist/index.d.ts
CHANGED
|
@@ -967,6 +967,125 @@ declare function validatePublicInput(input: InstagramDmPublicInput): ValidationE
|
|
|
967
967
|
*/
|
|
968
968
|
declare function convertPublicToProps(input: InstagramDmPublicInput): InstagramDmCompositionProps;
|
|
969
969
|
|
|
970
|
+
/**
|
|
971
|
+
* iMessage DM Composition Types
|
|
972
|
+
*
|
|
973
|
+
* Types for the iMessage DM conversation composition.
|
|
974
|
+
*/
|
|
975
|
+
|
|
976
|
+
/** Message sender type */
|
|
977
|
+
type ImMessageSender = 'user' | 'recipient';
|
|
978
|
+
/** Message in the conversation */
|
|
979
|
+
interface ImMessage {
|
|
980
|
+
id: string;
|
|
981
|
+
sender: ImMessageSender;
|
|
982
|
+
text: string;
|
|
983
|
+
/** Group with previous message (no gap, continuous bubble feel) */
|
|
984
|
+
groupWithPrevious?: boolean;
|
|
985
|
+
}
|
|
986
|
+
/**
|
|
987
|
+
* iMessage DM Composition Props
|
|
988
|
+
*/
|
|
989
|
+
interface IMessageDmCompositionProps {
|
|
990
|
+
width?: number;
|
|
991
|
+
height?: number;
|
|
992
|
+
durationInFrames?: number;
|
|
993
|
+
fps?: number;
|
|
994
|
+
showDebugOverlay?: boolean;
|
|
995
|
+
referenceImageUrl?: string;
|
|
996
|
+
showReferenceImage?: boolean;
|
|
997
|
+
referenceOpacity?: number;
|
|
998
|
+
headerTop?: number;
|
|
999
|
+
headerBottom?: number;
|
|
1000
|
+
headerBackgroundColor?: string;
|
|
1001
|
+
timeTop?: number;
|
|
1002
|
+
timeBottom?: number;
|
|
1003
|
+
timeLeft?: number;
|
|
1004
|
+
timeRight?: number;
|
|
1005
|
+
timeFontSize?: number;
|
|
1006
|
+
timeLetterSpacing?: number;
|
|
1007
|
+
timeColor?: string;
|
|
1008
|
+
timeText?: string;
|
|
1009
|
+
noNotiTop?: number;
|
|
1010
|
+
noNotiBottom?: number;
|
|
1011
|
+
noNotiLeft?: number;
|
|
1012
|
+
noNotiRight?: number;
|
|
1013
|
+
cellularTop?: number;
|
|
1014
|
+
cellularBottom?: number;
|
|
1015
|
+
cellularLeft?: number;
|
|
1016
|
+
cellularRight?: number;
|
|
1017
|
+
wifiTop?: number;
|
|
1018
|
+
wifiBottom?: number;
|
|
1019
|
+
wifiLeft?: number;
|
|
1020
|
+
wifiRight?: number;
|
|
1021
|
+
batteryTop?: number;
|
|
1022
|
+
batteryBottom?: number;
|
|
1023
|
+
batteryLeft?: number;
|
|
1024
|
+
batteryRight?: number;
|
|
1025
|
+
dividerLineY?: number;
|
|
1026
|
+
dividerLineColor?: string;
|
|
1027
|
+
backgroundColor?: string;
|
|
1028
|
+
plusButtonTop?: number;
|
|
1029
|
+
plusButtonBottom?: number;
|
|
1030
|
+
plusButtonLeft?: number;
|
|
1031
|
+
plusButtonRight?: number;
|
|
1032
|
+
footerTop?: number;
|
|
1033
|
+
footerBottom?: number;
|
|
1034
|
+
footerLeft?: number;
|
|
1035
|
+
footerRight?: number;
|
|
1036
|
+
footerBgColor?: string;
|
|
1037
|
+
footerBorderRadius?: number;
|
|
1038
|
+
footerBorderColor?: string;
|
|
1039
|
+
footerBorderWidth?: number;
|
|
1040
|
+
messageTextTop?: number;
|
|
1041
|
+
messageTextBottom?: number;
|
|
1042
|
+
messageTextLeft?: number;
|
|
1043
|
+
messageTextRight?: number;
|
|
1044
|
+
messageTextFontSize?: number;
|
|
1045
|
+
messageTextLetterSpacing?: number;
|
|
1046
|
+
messageTextColor?: string;
|
|
1047
|
+
messageText?: string;
|
|
1048
|
+
homeIndicatorTop?: number;
|
|
1049
|
+
homeIndicatorBottom?: number;
|
|
1050
|
+
homeIndicatorLeft?: number;
|
|
1051
|
+
homeIndicatorRight?: number;
|
|
1052
|
+
homeIndicatorColor?: string;
|
|
1053
|
+
senderBubbleColor?: string;
|
|
1054
|
+
recipientBubbleColor?: string;
|
|
1055
|
+
bubbleTextColor?: string;
|
|
1056
|
+
bubbleTextFontSize?: number;
|
|
1057
|
+
bubbleTextLetterSpacing?: number;
|
|
1058
|
+
bubbleBorderRadius?: number;
|
|
1059
|
+
bubblePaddingX?: number;
|
|
1060
|
+
bubblePaddingY?: number;
|
|
1061
|
+
messageGapSameUser?: number;
|
|
1062
|
+
messageGapDifferentUser?: number;
|
|
1063
|
+
sentMessagePaddingLeft?: number;
|
|
1064
|
+
sentMessagePaddingRight?: number;
|
|
1065
|
+
receivedMessagePaddingLeft?: number;
|
|
1066
|
+
receivedMessagePaddingRight?: number;
|
|
1067
|
+
multiLineSentMessagePaddingLeft?: number;
|
|
1068
|
+
multiLineReceivedMessagePaddingRight?: number;
|
|
1069
|
+
messagesAnchorY?: number;
|
|
1070
|
+
messages?: ImMessage[];
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* iMessage DM Composition
|
|
1075
|
+
*
|
|
1076
|
+
* A fully parameterized iMessage DM conversation renderer.
|
|
1077
|
+
* Uses ImageEditorComposition for rendering, with props converted to elements.
|
|
1078
|
+
*/
|
|
1079
|
+
|
|
1080
|
+
/**
|
|
1081
|
+
* Default composition props for registration
|
|
1082
|
+
*/
|
|
1083
|
+
declare const defaultIMessageDmProps: IMessageDmCompositionProps;
|
|
1084
|
+
/**
|
|
1085
|
+
* iMessage DM Composition Component
|
|
1086
|
+
*/
|
|
1087
|
+
declare const IMessageDmComposition: React.FC<IMessageDmCompositionProps>;
|
|
1088
|
+
|
|
970
1089
|
/**
|
|
971
1090
|
* Platform-agnostic messaging types
|
|
972
1091
|
*
|
|
@@ -1444,4 +1563,4 @@ declare function useResolvedPositions(elements: ImageEditorElement[], textValues
|
|
|
1444
1563
|
|
|
1445
1564
|
declare const RenderRoot: React.FC;
|
|
1446
1565
|
|
|
1447
|
-
export { type Acceleration, type AudioConfig, type AudioSegment, AutoCaptionComposition, AutoCaptionCompositionProps, AutoCaptionCompositionWithVideo, type BaseBubbleStyle, type BaseEditorConfig, type BaseMessage, type BaseMessageType, type BaseSegment, type BlendMode, BorderRadiusConfig, type BubbleRadii, CaptionOverlay, CaptionOverlayProps, type Channel, type ColorFilterConfig, type ColorShiftConfig, type CropConfig, type CuttingConfig, DEDUPLICATION_LEVELS, type DeduplicationConfig, type DeduplicationInput, type DeduplicationLevel, type DiagonalFilterConfig, type DiagonalFilterType, DynamicCropConfig, type EditorConfig, type EditorSegment, type EnhanceLevel, type EnhancementConfig, FitMode, FontWeight, type FrameManipulationConfig, type GifOverlayConfig, type GifSource, type GradientColor, type GradientOverlayConfig, type IgDmMessage, type IgDmSender, type IgDmTheme, type IgTheme, ImageEditorComposition, type ImageEditorCompositionProps, type ImageEditorConfig, ImageEditorElement, ImageElement, type ImageElementProps, type ImageMessage, type ImageSegment, type ImageSequenceSegment, InstagramDmComposition, type InstagramDmCompositionProps, type InstagramDmPublicInput, LEVEL_1_CONFIG, LEVEL_2_CONFIG, LEVEL_3_CONFIG, LEVEL_4_CONFIG, LEVEL_5_CONFIG, type LensCorrectionConfig, MediaBubble, type MediaBubbleProps, type Message, MessageBubble, type MessageBubbleProps, type MessageGroup, type MessageOrTyping, type MessagePosition, type MessageReaction, type MessageSender, type MobileEncodingConfig, type ParticleOverlayConfig, type PhoneConfig, type PhoneModel, type PhoneType, type PictureSegment, PositionResolutionResult, type PositionedMessage, ProfilePic, type ProfilePicProps, Reaction, type ReactionProps, type ReadReceipt, type ReadReceiptState, RelativePositionConfigX, RelativePositionConfigY, RenderRoot, ScreenshotAnimation, ScreenshotAnimationProps, type Segment, SegmentType, type SpeedConfig, type StaticSegment, TYPING_ANIMATION, TextElement, type TextElementProps, type TextMessage, type TextSegment, TextStyleProperties, TimeValue, type TraceRemovalConfig, TypingIndicator, type TypingIndicatorProps, type TypingIndicatorStyle, type TypingMessage, type UserProfile, type ValidationError, type VideoCodec, VideoEditorComposition, type VideoEditorCompositionProps, type VideoEditorConfig, VideoElement, type VideoElementProps, type VideoExtension, type VideoSegment, type VideoSequenceSegment, type VisualAdjustmentsConfig, type VisualSegment, type VisualSegmentUnion, bubbleRadiiToCss, calculateBubbleRadii, convertPublicToProps, defaultInstagramDmProps, flattenGroups, groupMessages, isDeduplicationLevel, resolveDeduplicationConfig, useFontsLoaded, useImageLoader, useImagePreloader, useResolvedPositions, validatePublicInput };
|
|
1566
|
+
export { type Acceleration, type AudioConfig, type AudioSegment, AutoCaptionComposition, AutoCaptionCompositionProps, AutoCaptionCompositionWithVideo, type BaseBubbleStyle, type BaseEditorConfig, type BaseMessage, type BaseMessageType, type BaseSegment, type BlendMode, BorderRadiusConfig, type BubbleRadii, CaptionOverlay, CaptionOverlayProps, type Channel, type ColorFilterConfig, type ColorShiftConfig, type CropConfig, type CuttingConfig, DEDUPLICATION_LEVELS, type DeduplicationConfig, type DeduplicationInput, type DeduplicationLevel, type DiagonalFilterConfig, type DiagonalFilterType, DynamicCropConfig, type EditorConfig, type EditorSegment, type EnhanceLevel, type EnhancementConfig, FitMode, FontWeight, type FrameManipulationConfig, type GifOverlayConfig, type GifSource, type GradientColor, type GradientOverlayConfig, IMessageDmComposition, type IMessageDmCompositionProps, type IgDmMessage, type IgDmSender, type IgDmTheme, type IgTheme, type ImMessage, type ImMessageSender, ImageEditorComposition, type ImageEditorCompositionProps, type ImageEditorConfig, ImageEditorElement, ImageElement, type ImageElementProps, type ImageMessage, type ImageSegment, type ImageSequenceSegment, InstagramDmComposition, type InstagramDmCompositionProps, type InstagramDmPublicInput, LEVEL_1_CONFIG, LEVEL_2_CONFIG, LEVEL_3_CONFIG, LEVEL_4_CONFIG, LEVEL_5_CONFIG, type LensCorrectionConfig, MediaBubble, type MediaBubbleProps, type Message, MessageBubble, type MessageBubbleProps, type MessageGroup, type MessageOrTyping, type MessagePosition, type MessageReaction, type MessageSender, type MobileEncodingConfig, type ParticleOverlayConfig, type PhoneConfig, type PhoneModel, type PhoneType, type PictureSegment, PositionResolutionResult, type PositionedMessage, ProfilePic, type ProfilePicProps, Reaction, type ReactionProps, type ReadReceipt, type ReadReceiptState, RelativePositionConfigX, RelativePositionConfigY, RenderRoot, ScreenshotAnimation, ScreenshotAnimationProps, type Segment, SegmentType, type SpeedConfig, type StaticSegment, TYPING_ANIMATION, TextElement, type TextElementProps, type TextMessage, type TextSegment, TextStyleProperties, TimeValue, type TraceRemovalConfig, TypingIndicator, type TypingIndicatorProps, type TypingIndicatorStyle, type TypingMessage, type UserProfile, type ValidationError, type VideoCodec, VideoEditorComposition, type VideoEditorCompositionProps, type VideoEditorConfig, VideoElement, type VideoElementProps, type VideoExtension, type VideoSegment, type VideoSequenceSegment, type VisualAdjustmentsConfig, type VisualSegment, type VisualSegmentUnion, bubbleRadiiToCss, calculateBubbleRadii, convertPublicToProps, defaultIMessageDmProps, defaultInstagramDmProps, flattenGroups, groupMessages, isDeduplicationLevel, resolveDeduplicationConfig, useFontsLoaded, useImageLoader, useImagePreloader, useResolvedPositions, validatePublicInput };
|