You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
473 B

export interface GradientObject {
id?: number;
type: string;
colorStops: GradientColorStop[];
__canvasGradient: CanvasGradient;
}
export interface GradientColorStop {
offset: number;
color: string;
}
export default class Gradient {
id?: number;
type: string;
colorStops: GradientColorStop[];
__canvasGradient: CanvasGradient;
constructor(colorStops: GradientColorStop[]);
addColorStop(offset: number, color: string): void;
}