[plugin] Add ID to loaded plugins

This commit is contained in:
Ferdinand Thiessen 2021-11-11 13:34:17 +01:00
parent 1c921322ae
commit 84f66ab86a
1 changed files with 1 additions and 0 deletions

1
types/plugin.d.ts vendored
View File

@ -76,6 +76,7 @@ export namespace FG_Plugin {
* Loaded Flaschengeist plugin
*/
interface LoadedPlugin {
id: string;
name: string;
version: string;
notification(msg: FG.Notification): FG_Plugin.Notification;