@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
14 lines (13 loc) • 847 B
TypeScript
import { Item } from "@aurigma/design-atoms-model/Product/Items";
import { IHistoryArgs } from "../ModelUpdateCommand";
import { BaseItemsCommand } from "./BaseItemsCommand";
import { ProductHandler } from "../../Services/ProductHandler";
import { IPlaceholderContentScaleCommandArgs as IPlaceholderContentScaleCommandArgsAbstraction } from "@aurigma/design-atoms-interfaces";
export interface IPlaceholderContentScaleCommandArgs extends IPlaceholderContentScaleCommandArgsAbstraction<Item> {
}
export declare class PlaceholderContentScaleCommand extends BaseItemsCommand<IPlaceholderContentScaleCommandArgs, void> {
constructor(productHandler: ProductHandler, args: IPlaceholderContentScaleCommandArgs, historyArgs: IHistoryArgs);
_executeCommandBody(): Promise<void>;
redo(): Promise<void>;
undo(): Promise<void>;
}