8 lines
264 B
TypeScript
8 lines
264 B
TypeScript
export interface CardPlugin {
|
||
id: string; // 唯一标识
|
||
displayName: string; // 显示名称
|
||
component: React.ComponentType<{ config?: any }>; // 卡片组件
|
||
configSchema?: any; // 配置的JSON Schema(用于后台配置界面)
|
||
|
||
}
|