UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

13 lines (12 loc) 447 B
import { Action } from '../action.ts'; import { ActionDependencies } from '../../../types/index.ts'; export declare const SetCameraLayerAction: new (payload: { layer: "LIVE" | "EDITOR"; }, dependencies: Pick<ActionDependencies, "controller">) => Action<{ layer: "LIVE" | "EDITOR"; }, Pick<ActionDependencies, "controller">, void>; declare global { interface ActionTypes { SET_CAMERA_LAYER: typeof SetCameraLayerAction; } }