UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

9 lines (8 loc) 410 B
import { Action } from '../action.ts'; import { ActionDependencies } from '../../../types/index.ts'; export declare const SetGizmoVisibleAction: new (payload: boolean, dependencies: Pick<ActionDependencies, "getToolbox">) => Action<boolean, Pick<ActionDependencies, "getToolbox">, Promise<void>>; declare global { interface ActionTypes { SET_GIZMO_VISIBILITY: typeof SetGizmoVisibleAction; } }