12 lines
471 B
TypeScript
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;
|