@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
16 lines (15 loc) • 729 B
TypeScript
import { BaseItemsCommand } from "./BaseItemsCommand";
import { IHistoryArgs } from "../ModelUpdateCommand";
import { Item } from "@aurigma/design-atoms-model/Product/Items";
import { ProductHandler } from "../../Services/ProductHandler";
export declare class PlaceholderContentRotateCommand extends BaseItemsCommand<IPlaceholderContentRotateCommandArgs, void> {
private _productHandler;
constructor(args: IPlaceholderContentRotateCommandArgs, historyArgs: IHistoryArgs, _productHandler: ProductHandler);
_executeCommandBody(): Promise<void>;
redo(): Promise<void>;
undo(): Promise<void>;
}
export interface IPlaceholderContentRotateCommandArgs {
items?: Item[];
clockwise?: boolean;
}