Interface PollsBackground

interface PollsBackground {
    angle: number;
    color: string;
    height: number;
    id: number;
    images: BaseImage[];
    name: string;
    points: BaseGradientPoint[];
    type: "gradient" | "tile";
    width: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

angle: number

Gradient angle with 0 on positive X axis

color: string

Hex color code without #

height: number

Original height of pattern tile

id: number
images: BaseImage[]
name: string
type: "gradient" | "tile"
width: number

Original with of pattern tile

Generated using TypeDoc