@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
18 lines (17 loc) • 559 B
TypeScript
export interface IViewerMessagesConfig {
delete?: IViewerWarningMessageConfig;
warningImageResolution: string;
badImageResolution: string;
moreThanOneWarning: string;
safetyLinesViolationWarning: string;
bleedViolationWarning: string;
regionViolationWarning: string;
textCropWarning: string;
inPlaceNotSupportedWarning: string;
rasterElementsViolationWarning: string;
fontSizeViolationWarning: string;
}
export interface IViewerWarningMessageConfig {
enabled?: boolean;
message?: string;
}