1
2
3
4
5
6
7
8
9
10
11
12
| export interface GradientColorPoint {
| id?: string;
| color?: string;
| left?: number;
| }
| export interface GradientColors {
| points: GradientColorPoint[];
| degree: number;
| }
| export declare const isGradientColor: (input: string) => null | RegExpExecArray;
| export declare const parseGradientString: (input: string) => GradientColors | boolean;
| export default parseGradientString;
|
|