Vanessa 2024-01-06 20:41:02 +08:00
parent 013b06dcce
commit 473df4b185
6 changed files with 35 additions and 7 deletions

View file

@ -56,6 +56,7 @@ export class Plugin {
/// #endif
}
} = {};
private protyleOptionsValue: IOptions;
constructor(options: {
app: App,
@ -307,4 +308,12 @@ export class Plugin {
defIds: options.defIds,
}));
};
set protyleOptions(options: IOptions) {
this.protyleOptionsValue = options;
}
get protyleOptions() {
return this.protyleOptionsValue;
}
}