@interactify-live/pindo-wizard-react-native
Version:
React Native PindoWizard component for media capture and interaction management
16 lines (15 loc) • 503 B
TypeScript
import React from "react";
interface CameraComponentProps {
onCapture: (uri: string, type: "photo" | "video") => void;
onGallerySelect: (uri: string, type: "photo" | "video") => void;
onClose: () => void;
settings?: {
isVideoActive?: boolean;
isInteractionActive?: boolean;
isCoverActive?: boolean;
numMedias?: number;
flashEnabled?: boolean;
};
}
declare const CameraComponent: React.FC<CameraComponentProps>;
export default CameraComponent;