@shopware-ag/dive
Version:
Shopware Spatial Framework
14 lines (13 loc) • 538 B
TypeScript
import { Action } from '../action.ts';
import { ActionDependencies } from '../../../types/index.ts';
import { EntitySchema } from '../../../../../index.ts';
export declare const UpdateObjectAction: new (payload: Partial<EntitySchema> & {
id: string;
}, dependencies: Pick<ActionDependencies, "registered" | "engine">) => Action<Partial<EntitySchema> & {
id: string;
}, Pick<ActionDependencies, "registered" | "engine">, void>;
declare global {
interface ActionTypes {
UPDATE_OBJECT: typeof UpdateObjectAction;
}
}