UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

13 lines (12 loc) 409 B
import { Action } from '../action.ts'; import { ActionDependencies } from '../../../types/index.ts'; export declare const ModelLoadedAction: new (payload: { id: string; }, dependencies: Pick<ActionDependencies, "registered">) => Action<{ id: string; }, Pick<ActionDependencies, "registered">, void>; declare global { interface ActionTypes { MODEL_LOADED: typeof ModelLoadedAction; } }