@shopware-ag/dive
Version:
Shopware Spatial Framework
9 lines (8 loc) • 398 B
TypeScript
import { Action } from '../action.ts';
import { ActionDependencies } from '../../../types/index.ts';
export declare const SetCameraLockedAction: new (payload: boolean, dependencies: Pick<ActionDependencies, "controller">) => Action<boolean, Pick<ActionDependencies, "controller">, void>;
declare global {
interface ActionTypes {
SET_CAMERA_LOCKED: typeof SetCameraLockedAction;
}
}