@nurielmeni/strapi-plugin-video-field
Version:
Add video field to your Strapi application.
15 lines (14 loc) • 472 B
TypeScript
interface VideoInputProps {
intlLabel: Record<any, any>;
onChange: (e: any) => void;
attribute: Record<any, any>;
name: string;
disabled?: boolean;
error?: string;
labelAction?: Record<any, any>;
required?: boolean;
value?: any;
[key: string]: any;
}
declare const VideoInput: ({ attribute, name, onChange, value, intlLabel, intlDescription }: VideoInputProps) => import("react/jsx-runtime").JSX.Element;
export default VideoInput;