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

22 lines 780 B
import type { OtterMessageContent } from '@o3r/core'; /** * Payload of the {@see PlaceholderLoadingStatusMessage} * * Describe the state of an identified placeholder: what template is being loaded and whether the load is done */ export interface PlaceholderLoadingStatus { /** * Ids of the template to be loaded in the placeholder */ templateIds?: string[]; /** * Identify the placeholder under consideration */ placeholderId?: string; } /** * Message to describe a placeholder's loading status: the templates to be loaded and the pending status. */ export interface PlaceholderLoadingStatusMessage extends PlaceholderLoadingStatus, OtterMessageContent<'placeholder-loading-status'> { } //# sourceMappingURL=placeholder.interface.d.ts.map