UNPKG

@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

33 lines 982 B
import { EntityState } from '@ngrx/entity'; /** * PlaceholderTemplate model */ export interface PlaceholderTemplateModel { /** Placeholder id that is unique*/ id: string; /** Urls to the templates to be fetched, and priority for rendering order */ urlsWithPriority: { rawUrl: string; priority: number; }[]; } /** Possible placeholder mode */ export type PlaceholderMode = 'normal' | 'debug' | 'pending'; /** * PlaceholderTemplate store state */ export interface PlaceholderTemplateState extends EntityState<PlaceholderTemplateModel> { mode: PlaceholderMode; } /** * Name of the PlaceholderTemplate Store */ export declare const PLACEHOLDER_TEMPLATE_STORE_NAME = "placeholderTemplate"; /** * PlaceholderTemplate Store Interface */ export interface PlaceholderTemplateStore { /** PlaceholderTemplate state */ [PLACEHOLDER_TEMPLATE_STORE_NAME]: PlaceholderTemplateState; } //# sourceMappingURL=placeholder-template.state.d.ts.map