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.

10 lines (9 loc) 442 B
import { IHiResOutputRendering, PrintArea } from "@aurigma/design-atoms-model"; export interface IRenderingConfigProvider { getRgbColorProfileName(): string | null; getCmykColorProfileName(): string | null; getGrayscaleColorProfileName(): string | null; getHiResDestinationColorProfileName(): string | null; cmykModeEnabled(): boolean; getHiResRendering(printArea: PrintArea): IHiResOutputRendering | null; }