jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
12 lines (11 loc) • 443 B
TypeScript
import React from 'react';
import type { JSONSchemaEditorProps } from './types';
export default class JSONSchemaEditorControl extends React.PureComponent<JSONSchemaEditorProps> {
static defaultProps: {
enableAdvancedSetting: boolean;
};
renderModalProps(value: any, onChange: (value: any) => void): JSX.Element;
render(): JSX.Element;
}
export declare class JSONSchemaEditorRenderer extends JSONSchemaEditorControl {
}