jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
13 lines (12 loc) • 566 B
TypeScript
import React from 'react';
import type { FormControlProps, InputFormulaControlSchema } from '../types';
interface InputFormulaProps extends FormControlProps, Omit<InputFormulaControlSchema, 'options' | 'inputClassName' | 'className' | 'descriptionClassName'> {
}
export declare class InputFormulaRenderer extends React.Component<InputFormulaProps> {
static defaultProps: Pick<InputFormulaControlSchema, 'inputMode' | 'borderMode' | 'evalMode'>;
ref: any;
formulaRef(ref: any): void;
validate(): string | void;
render(): JSX.Element;
}
export {};