@slesaad/veda-content-editor
Version:
VEDA Content Editor - A React-based MDX editor component
25 lines • 685 B
TypeScript
import React from 'react';
interface FieldProps {
fieldName: string;
value: string;
hint?: string;
onChange: (value: string) => void;
isRequired?: boolean;
isDate?: boolean;
numeric?: boolean;
onBlur?: (value: string) => void;
onFocus?: (value: string) => void;
type?: string;
componentProps: any;
propName: string;
customClass?: string;
placeHolder?: string;
draftInputs?: any;
inputErrors?: any;
setDraftInputs?: (value: any) => void;
setInputErrors?: (value: any) => void;
options?: string[];
}
export declare const InputField: React.FC<FieldProps>;
export {};
//# sourceMappingURL=CreateInterface.d.ts.map