From 906fcfa62cb48e2355b4bb432c71f0ba70809d95 Mon Sep 17 00:00:00 2001 From: Pablo Date: Mon, 4 Feb 2019 18:31:10 +0100 Subject: [PATCH] Added warning to RadialGradientFill --- types/scenegraph.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/scenegraph.d.ts b/types/scenegraph.d.ts index 885010d..8033215 100644 --- a/types/scenegraph.d.ts +++ b/types/scenegraph.d.ts @@ -254,6 +254,9 @@ declare class LinearGradientFill { public setEndPoints(startX: number, startY: number, endX: number, endY: number); } +/** + * **The RadialGradientFill type is not documented and its API may change. Plugins currently cannot modify or otherwise work with radial gradients.** + */ declare class RadialGradientFill { // TODO: Waiting for documentation to arrive }