@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
9 lines (8 loc) • 326 B
TypeScript
import { RgbColor } from "@aurigma/design-atoms-model/Colors/RgbColor";
import { PlaceholderFitModeType } from "../../Viewer/Interfaces";
export interface IPlaceholderHandlerOptions {
isCropMode?: boolean;
fitModeType?: PlaceholderFitModeType;
emptyBorderWidth?: number;
emptyBorderColor?: RgbColor;
}