Skip to main content

EffectsManagerView

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