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.

11 lines (10 loc) 382 B
import { CommandManager } from "../CommandManager"; import { Viewer } from "../../Viewer/Viewer"; import { BaseCommand } from "../BaseCommand"; export declare class SelectAllItemsCommand extends BaseCommand<void, void> { private _viewer; private _cm; constructor(_viewer: Viewer, _cm: CommandManager); execute(): Promise<void>; private _filterItems; }