jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
13 lines (12 loc) • 455 B
TypeScript
import React from 'react';
import { type RendererProps } from 'jamis-core';
import type { OperationSchema } from '../types';
interface OperationProps extends RendererProps, Omit<OperationSchema, 'type' | 'className'> {
}
export declare class OperationField extends React.Component<OperationProps, object> {
static propsList: Array<string>;
render(): JSX.Element;
}
export declare class OperationFieldRenderer extends OperationField {
}
export {};