UNPKG

@nurielmeni/strapi-plugin-video-field

Version:
15 lines (14 loc) 472 B
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;