UNPKG

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

Version:

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

10 lines (9 loc) 239 B
import { FC } from 'react'; interface IDialogDelete { title: string; isOpen: boolean; close: (isOpen: boolean) => void; deleteVideo: () => void; } declare const DialogDelete: FC<IDialogDelete>; export default DialogDelete;