UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

22 lines (21 loc) 698 B
import React from 'react'; import { TableCell } from '../r-table'; import type { StaticProps } from '../types'; export declare class StaticFieldRenderer extends TableCell { static defaultProps: { wrapperComponent: string; }; render(): JSX.Element; } export default class StaticControl extends React.Component<StaticProps, any> { static defaultProps: { placeholder: string; }; handleQuickChange: (values: any, saveImmediately: boolean | any, savePristine?: boolean, options?: { resetOnFailed?: boolean; reload?: string; }) => Promise<void>; render(): JSX.Element; } export declare class StaticControlRenderer extends StaticControl { }