From a23aba866f819fe2fdb88438415b6bbf9bb1ca36 Mon Sep 17 00:00:00 2001 From: Amberto Date: Sat, 26 Mar 2022 21:09:23 -0300 Subject: [PATCH] Fix undefined array type of `plugins` property in `grapejs.EditorConfig` type declaration --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 3077f3ce9..7e2799603 100644 --- a/index.d.ts +++ b/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;