@o3r/components
Version:
This module contains component-related features (Component replacement, CMS compatibility, helpers, pipes, debugging developer tools...) It comes with an integrated ng builder to help you generate components compatible with Otter features (CMS integration
13 lines • 499 B
TypeScript
import type { RulesEngineAction } from '@o3r/core';
/** ActionUpdatePlaceholderBlock */
export declare const RULES_ENGINE_PLACEHOLDER_UPDATE_ACTION_TYPE = "UPDATE_PLACEHOLDER";
/**
* Content of action that updates a placeholder
*/
export interface ActionUpdatePlaceholderBlock extends RulesEngineAction {
actionType: typeof RULES_ENGINE_PLACEHOLDER_UPDATE_ACTION_TYPE;
placeholderId: string;
value: string;
priority?: number;
}
//# sourceMappingURL=placeholder.interfaces.d.ts.map