UNPKG

igniteui-react-core

Version:
31 lines (30 loc) 753 B
import { Type } from "./type"; /** * Describes available behaviors for setting direction of linear gradient brush or a radial gradient brush */ export declare enum GradientDirection { /** * Specifies from top to bottom direction of gradient brush */ TopBottom = 0, /** * Specifies from bottom to top direction of gradient brush */ BottomTop = 1, /** * Specifies from left to right direction of gradient brush */ LeftRight = 2, /** * Specifies from right to left direction of gradient brush */ RightLeft = 3, /** * Specifies radial gradient brush */ Radial = 4 } /** * @hidden */ export declare let GradientDirection_$type: Type;