This commit is contained in:
xiaojunnuo
2024-10-12 23:51:05 +08:00
parent 5601bc4ab2
commit 6f8fe62087
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,13 @@
import { FormItemProps } from "../d.ts/index.js";
export type PluginConfig = {
show: false;
sysInput: {
[key: string]: {};
};
};
//插件配置服务
export type IPluginConfigService = {
getPluginConfig: (pluginName: string) => Promise<any>;
};