@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
29 lines (28 loc) • 607 B
TypeScript
import { SpacingSettings } from ".";
export declare enum ShapeDividerPositions {
top = 0,
bottom = 1
}
export declare enum ShapeDividerTypes {
waves = 0,
wavesOpacity = 1,
curve = 2,
curveAsymentrical = 3,
triangle = 4,
triangleAsymentrical = 5,
tilt = 6,
arrow = 7,
split = 8,
book = 9
}
export interface ShapeDividerSettings {
invert?: boolean;
position?: ShapeDividerPositions;
flip?: boolean;
shape: ShapeDividerTypes;
color: string;
width?: number;
height?: number;
spacing?: SpacingSettings;
borderradius?: number;
}