@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
13 lines (12 loc) • 351 B
TypeScript
import { Surface } from "@aurigma/design-atoms-model/Product/Surface";
export declare class WorkspaceRotation {
rotate(surface: Surface, rotationType: RotationType): void;
private _getRotationTypeAngle;
}
export declare enum RotationType {
None = 0,
Rotate90 = 90,
Rotate180 = 180,
Rotate270 = 270,
Auto = -1
}