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.

19 lines (18 loc) 827 B
import { IViolationServiceConfiguration, IViewerMessagesConfig } from "../../Viewer/Interfaces"; import { EventManager } from "../EventManager"; import { ProductHandler } from "../ProductHandler"; import { ViolationService } from "./ViolationService"; import { ModuleOfTextWhizz } from "../../Viewer"; export declare class ViolationServiceFactory { private _conf; private _messages; private _eventManager; private _productHandler; private _textWhizz; private _renderingDpi; private _violations; constructor(_conf: IViolationServiceConfiguration, _messages: IViewerMessagesConfig, _eventManager: EventManager, _productHandler: ProductHandler, _textWhizz: ModuleOfTextWhizz); create(): ViolationService; get renderingDpi(): number; set renderingDpi(value: number); }