@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 { IPlaceholderContentResetCommandArgs as IPlaceholderContentResetCommandArgsAbstraction } from "@aurigma/design-atoms-interfaces";
export interface IPlaceholderContentResetCommandArgs extends IPlaceholderContentResetCommandArgsAbstraction<Item> {
}
export declare class PlaceholderContentResetCommand extends BaseItemsCommand<IPlaceholderContentResetCommandArgs, void> {
constructor(productHandler: ProductHandler, args: IPlaceholderContentResetCommandArgs, historyArgs: IHistoryArgs);
_executeCommandBody(): Promise<void>;
redo(): Promise<void>;
undo(): Promise<void>;
}