fix: use any[] for externalPlugins type

This commit is contained in:
saberzero1 2026-02-07 06:13:00 +01:00
parent 78e18d8b52
commit 81e2c88a2a
No known key found for this signature in database

View file

@ -17,7 +17,7 @@ type GlobalConfiguration = {
type QuartzConfig = {
configuration: GlobalConfiguration;
plugins: any;
externalPlugins?: string[];
externalPlugins?: any[];
};
type QuartzPluginData = {