UNPKG

amis

Version:

一种MIS页面生成工具

17 lines (16 loc) 518 B
import React from 'react'; import { FormControlProps } from './Item'; export interface FormulaProps extends FormControlProps { formula?: string; initSet?: boolean; autoSet?: boolean; condition?: string; } export default class FormulaControl extends React.Component<FormControlProps, any> { componentDidMount(): void; componentWillReceiveProps(nextProps: FormControlProps): void; doAction(): void; render(): null; } export declare class FormulaControlRenderer extends FormulaControl { }