amis-model-design
Version:
amis模型设计器
15 lines (14 loc) • 483 B
TypeScript
import React from 'react';
export interface InputConditionProps {
value: any;
onChange: (value: any) => void;
disabled?: boolean;
placeholder?: string;
hasError?: boolean;
formula?: any;
fields?: any;
modalSize?: string;
renderEtrValue?: any;
}
declare function InputCondition({ value, onChange, disabled, placeholder, hasError, fields, formula, modalSize, renderEtrValue }: InputConditionProps): React.JSX.Element;
export default InputCondition;