UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

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