We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25b31a6 + 89e3edf commit c4b3378Copy full SHA for c4b3378
adminforth/types/Back.ts
@@ -2152,4 +2152,11 @@ export interface IWebSocketBroker {
2152
publish: (topic: string, data: any, filterUsers?: (adminUser: AdminUser) => Promise<boolean>) => void;
2153
2154
registerWsClient: (client: IWebSocketClient) => void;
2155
+}
2156
+export interface PluginsCommonOptions {
2157
+ /**
2158
+ * Id of the plugin. It should be unique across all plugins.
2159
+ * It is required if you want to log custom actions, otherwise it is optional.
2160
+ */
2161
+ id?: string;
2162
}
0 commit comments