jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
8 lines (7 loc) • 371 B
TypeScript
import type { RendererFC, RendererProps } from 'jamis-core';
import type { PanelSchema } from '../types';
import type { IPanelStore } from './PanelStore';
export interface PanelProps extends RendererProps, Omit<PanelSchema, 'type' | 'className' | 'panelClassName' | 'bodyClassName'> {
store: IPanelStore;
}
export declare const PanelRenderer: RendererFC<PanelProps>;