@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) • 432 B
TypeScript
import React, { FC } from 'react';
interface IFieldProps {
name: string;
label?: string;
value: string;
isPassword?: boolean;
placeholder?: string;
description?: string;
tooltip?: string;
detailsLink?: string;
error?: string;
required?: boolean;
onChange?: (e: React.ChangeEvent<any>) => void;
editable?: boolean;
}
declare const FieldComp: FC<IFieldProps>;
export default FieldComp;