Skip to main content

EffectsManagerView

const EffectsManagerView: React.FC<{
updatingPreviewVideo?: boolean;
isSaving: boolean;
selectedEffect: RenderEffects;
selectedImageUrl?: string;
imageUrls: object[];
totalAllowedImages: number;
acceptedImageFormats: string;
onBackgroundBlurClick: () => void;
onNoneClick: () => void;
onFileUploadChange: React.ChangeEventHandler<HTMLInputElement>;
onImageClick: (imageUrl) => void;
onRemoveImageClick: (imageUrl) => void;
onCancel: () => void;
onSave: (e) => void;
}>;