From a51641475aeeb769bbe81d3cdbe61ab3bc281d29 Mon Sep 17 00:00:00 2001 From: Jason Schilling Date: Tue, 1 Aug 2017 21:12:02 +0200 Subject: [PATCH] [TinyMCE] Fix content_css attribute type in Settings weak type (#18542) Docs: `*Type*: String, Array` https://www.tinymce.com/docs/configure/content-appearance/#content_css --- types/tinymce/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/tinymce/index.d.ts b/types/tinymce/index.d.ts index 2791871593..897199a214 100644 --- a/types/tinymce/index.d.ts +++ b/types/tinymce/index.d.ts @@ -133,7 +133,7 @@ export interface Settings { body_id?: string; - content_css?: string; + content_css?: string | string[]; content_style?: string;