UNPKG

@strawbinary-io/api-video-strapi-5-plugin

Version:

A powerful Strapi plugin to easily manage your videos and integrate them in your project

11 lines (10 loc) 323 B
import { FC } from 'react'; import { EnhancedCustomVideo } from '../../../pages/HomePage'; interface IUpdateVideoModalProps { video: EnhancedCustomVideo; update: () => void; close: () => void; editable: boolean; } declare const UpdateVideoModal: FC<IUpdateVideoModalProps>; export default UpdateVideoModal;