@aurigma/design-atoms-model
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
12 lines (11 loc) • 406 B
TypeScript
import { ModelComponent } from "../ModelComponent";
export declare class ViolationSettings extends ModelComponent {
constructor(defaultValue?: boolean);
allowSafetyLines: boolean;
allowRegion: boolean;
allowBleedArea: boolean;
clone(targetObject?: ViolationSettings): ViolationSettings;
equals(p: ViolationSettings): boolean;
static type: string;
type: string;
}