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.

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