made font-options in "NodeOptions" optional (#13935)

Add an optional extended description…
This commit is contained in:
mkollers
2017-01-11 09:04:20 -08:00
committed by Sheetal Nandi
parent 7e99c5f1ab
commit 3588cb7e50
+7 -7
View File
@@ -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;