enable plugin

This commit is contained in:
Vanessa 2023-05-16 10:31:01 +08:00
parent f3d1acd166
commit 85496345ef
4 changed files with 105 additions and 41 deletions

View file

@ -298,6 +298,13 @@ declare interface IDockTab {
hotkeyLangId?: string // 常量中无法存变量
}
declare interface IPluginData {
name: string,
js: string,
css: string,
i18n: IObject
}
declare interface IPluginDockTab {
position: TPluginDockPosition,
size: { width: number, height: number },