From 3588cb7e50cea21b2ae43e8b4e9d63b79c70678f Mon Sep 17 00:00:00 2001 From: mkollers Date: Wed, 11 Jan 2017 18:04:20 +0100 Subject: [PATCH] made font-options in "NodeOptions" optional (#13935) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add an optional extended description… --- vis/index.d.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/vis/index.d.ts b/vis/index.d.ts index 9e99f410cd..92b6ea6a08 100644 --- a/vis/index.d.ts +++ b/vis/index.d.ts @@ -1568,13 +1568,13 @@ export interface NodeOptions { }; font?: string | { - color: string, - size: number, // px - face: string, - background: string, - strokeWidth: number, // px - strokeColor: string, - align: string, + color?: string, + size?: number, // px + face?: string, + background?: string, + strokeWidth?: number, // px + strokeColor?: string, + align?: string, }; group?: string;