UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

17 lines (16 loc) 777 B
import { Item } from "@aurigma/design-atoms-model/Product/Items"; import { Violation, IViolationInfo } from "./Violation"; import { IViewerMessagesConfig, IViolationServiceConfiguration } from "../../../Viewer/Interfaces"; import { ProductHandler } from "../../ProductHandler"; export declare class SafetyLineViolation extends Violation { private _productHandler; private _messages; private _conf; private _mode; constructor(_productHandler: ProductHandler, _messages: IViewerMessagesConfig, _conf: IViolationServiceConfiguration); isAvailableFor(item: Item): boolean; getViolationInfo(item: Item): IViolationInfo; private _getSafetyRectsFromPrintArea; getStatePropertyName(): string; static statePropertyName: string; }