Browse Source

Fix undefined array type of `plugins` property in `grapejs.EditorConfig` type declaration

pull/4216/head
Amberto 4 years ago
parent
commit
a23aba866f
  1. 2
      index.d.ts

2
index.d.ts

@ -37,7 +37,7 @@ declare module grapesjs {
autorender?: boolean;
/** Array of plugins to execute on start */
plugins?: [];
plugins?: any[];
/** Custom options for plugins */
pluginsOpts?: Record<string, any>;

Loading…
Cancel
Save