@strawbinary-io/api-video-strapi-5-plugin
Version:
A powerful Strapi plugin to easily manage your videos and integrate them in your project
18 lines (17 loc) • 388 B
TypeScript
import { FC } from 'react';
export interface IUpdateButtonProps {
title: string;
description: string;
_public: boolean;
tags: string[];
metadata: {
key: string;
value: string;
}[];
id: string;
videoId: string;
update: () => void;
close: () => void;
}
declare const UpdateButton: FC<IUpdateButtonProps>;
export default UpdateButton;