From 84f66ab86a689b0daed9848ffecd53bece67885b Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Thu, 11 Nov 2021 13:34:17 +0100 Subject: [PATCH] [plugin] Add ID to loaded plugins --- types/plugin.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/plugin.d.ts b/types/plugin.d.ts index 0af00eb..e595f82 100644 --- a/types/plugin.d.ts +++ b/types/plugin.d.ts @@ -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;