@strawbinary-io/api-video-strapi-5-plugin
Version:
A powerful Strapi plugin to easily manage your videos and integrate them in your project
14 lines (13 loc) • 419 B
TypeScript
import { FC } from 'react';
import { InputDataMetadata } from '../../../../types';
interface MetadataTableProps {
metadata?: {
key: string;
value: string;
}[];
handleSetMetadata: (metadata: InputDataMetadata) => void;
handleRemoveMetadata: (metadata: InputDataMetadata) => void;
editable: boolean;
}
declare const MetadataTable: FC<MetadataTableProps>;
export default MetadataTable;