UNPKG

gradient-utils

Version:
14 lines (13 loc) 276 B
export interface SVGColorStop { /** number in percent (0;100) */ offset?: number; stopColor: string; stopOpacity?: number; } export interface SVGLinearGradient { x1: string; y1: string; x2: string; y2: string; colorStops: SVGColorStop[]; }