UNPKG

jamis

Version:

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

9 lines (8 loc) 366 B
import React from 'react'; import type { LocaleProps, ThemeProps } from 'jamis-core'; import type { SchemaEditorItemCommonProps } from './types'; export interface SchemaEditorItemProps extends SchemaEditorItemCommonProps, LocaleProps, ThemeProps { } export declare class SchemaEditorItem extends React.Component<SchemaEditorItemProps> { render(): JSX.Element; }