Interface CalendarWidgetConfig

interface CalendarWidgetConfig {
    allowedViewElTypes?: string[];
    from?: string;
    group: "widget";
    id?: string;
    query: string;
    renderRule?: RulesLogic;
    to?: string;
    type: "Calendar";
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

Properties

allowedViewElTypes?: string[]
from?: string
group: "widget"
id?: string
query: string
renderRule?: RulesLogic
to?: string
type: "Calendar"