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.

17 lines (16 loc) 761 B
import { Item } from "@aurigma/design-atoms-model/Product/Items"; import { IHistoryArgs } from "../ModelUpdateCommand"; import { BaseItemsCommand } from "./BaseItemsCommand"; import { ProductHandler } from "../../Services/ProductHandler"; export declare class PlaceholderContentScaleCommand extends BaseItemsCommand<IPlaceholderContentScaleCommandArgs, void> { private _productHandler; constructor(args: IPlaceholderContentScaleCommandArgs, historyArgs: IHistoryArgs, _productHandler: ProductHandler); _executeCommandBody(): Promise<void>; redo(): Promise<void>; undo(): Promise<void>; } export interface IPlaceholderContentScaleCommandArgs { items?: Item[]; scale: number; forceQualityChangeInfoBar?: boolean; }