Skip to content

Commit

Permalink
fix: add gradientTransform to d.ts
Browse files Browse the repository at this point in the history
fixes #1069
  • Loading branch information
msand committed Sep 27, 2019
1 parent 18828c0 commit 3f08c46
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ export interface LinearGradientProps {
y1?: NumberProp;
y2?: NumberProp;
gradientUnits?: Units;
gradientTransform?: ColumnMajorTransformMatrix | string;
id?: string;
}
export const LinearGradient: React.ComponentClass<LinearGradientProps>;
Expand Down Expand Up @@ -328,6 +329,7 @@ export interface RadialGradientProps {
cy?: NumberProp;
r?: NumberProp;
gradientUnits?: Units;
gradientTransform?: ColumnMajorTransformMatrix | string;
id?: string;
}
export const RadialGradient: React.ComponentClass<RadialGradientProps>;
Expand Down

0 comments on commit 3f08c46

Please sign in to comment.