From 2191656fa2b9055d38ce80ed645bf67a0fe9bf7b Mon Sep 17 00:00:00 2001 From: Christopher Powroznik Date: Fri, 12 Jan 2018 07:36:30 +0300 Subject: [PATCH] added missing class and offset (#553) --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index eb861e96..87d3910c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -175,6 +175,7 @@ interface RectProps extends PathProps { height?: NumberProp, rx?: NumberProp, ry?: NumberProp, + class? : string } export const Rect: React.ComponentClass; @@ -183,6 +184,7 @@ export const Shape: React.ComponentClass<{}>; interface StopProps { stopColor?: string, stopOpacity?: NumberProp, + offset?: string } export const Stop: React.ComponentClass;