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) 298 B
import { FC } from 'react'; import { EnhancedCustomVideo } from '../../pages/HomePage'; export interface IVideosProps { video: EnhancedCustomVideo; updateData: () => void; editable: boolean; deletable: boolean; } declare const VideoView: FC<IVideosProps>; export default VideoView;