@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
10 lines (9 loc) • 386 B
TypeScript
import { PrintArea } from "@aurigma/design-atoms-model";
export interface IRenderingConfig {
getRgbColorProfileName(): string | null;
getCmykColorProfileName(): string | null;
getGrayscaleColorProfileName(): string | null;
getHiResDestinationColorProfileName(): string | null;
cmykModeEnabled(): boolean;
getHiResRendering(printArea: PrintArea): any;
}