mono/packages/ui/dist-lib/components/EditVideoModal.d.ts
babayaga 7f63b07df5 lib
2026-01-20 12:14:45 +01:00

12 lines
471 B
TypeScript

interface EditVideoModalProps {
open: boolean;
onOpenChange: (open: boolean) => void;
videoId: string;
currentTitle: string;
currentDescription: string | null;
currentVisible: boolean;
onUpdateSuccess: () => void;
}
declare const EditVideoModal: ({ open, onOpenChange, videoId, currentTitle, currentDescription, currentVisible, onUpdateSuccess }: EditVideoModalProps) => import("react/jsx-runtime").JSX.Element;
export default EditVideoModal;