UNPKG

jamis

Version:

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

14 lines (13 loc) 448 B
import React from 'react'; import type { RendererProps } from 'jamis-core'; import type { PlainSchema } from './types'; interface PlainProps extends RendererProps, Omit<PlainSchema, 'type' | 'className'> { wrapperComponent?: any; } export declare class Plain extends React.Component<PlainProps, object> { static defaultProps: Partial<PlainProps>; render(): JSX.Element; } export declare class PlainRenderer extends Plain { } export {};