mirror of
https://github.com/certd/certd.git
synced 2026-07-05 19:37:34 +08:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
export type PluginConfig = {
|
|
name: string;
|
|
disabled: boolean;
|
|
sysSetting: {
|
|
input: Record<string, any>;
|
|
};
|
|
};
|
|
|
|
//插件配置服务
|
|
export type IPluginConfigService = {
|
|
getPluginConfig: (pluginName: string) => Promise<PluginConfig>;
|
|
};
|