UNPKG

linear-gradient-parser

Version:

Parses a SVG linear gradient string / parsed JSON into css background image property

21 lines (18 loc) 315 B
interface Stop { color: string, opacity: number, offset: string|number, style: object } interface LinearGradient { x1: string, x2: string, y1?: string, y2?: string, stops: Stop[], children: Stop[], } interface BackgroundResult { background: string, angle: number }