wip: change local dev

This commit is contained in:
2025-03-20 05:47:13 +00:00
parent 271456347a
commit 8d3c805985
13 changed files with 407 additions and 130 deletions

7
types/plugin.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
export interface CardPlugin {
id: string; // 唯一标识
displayName: string; // 显示名称
component: React.ComponentType<{ config?: any }>; // 卡片组件
configSchema?: any; // 配置的JSON Schema用于后台配置界面
}