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.

15 lines (14 loc) 693 B
import { BaseItemsCommand } from "./BaseItemsCommand"; import { IHistoryArgs } from "../ModelUpdateCommand"; import { Item, BaseTextItem } from "@aurigma/design-atoms-model/Product/Items"; import { CommandManager } from "../CommandManager"; export declare class FixUnsupportedTextCommand extends BaseItemsCommand<IFixUnsupportedTextCommandArgs, BaseTextItem> { private _commandManager; constructor(historyArgs: IHistoryArgs, args: IFixUnsupportedTextCommandArgs, _commandManager: CommandManager); _executeCommandBody(): Promise<BaseTextItem>; redo(): Promise<void>; undo(): Promise<void>; } export interface IFixUnsupportedTextCommandArgs { item: Item; }