element-vir - v26.14.0
    Preparing search index...

    Type Alias DeclarativeElementHost<TagName, Inputs, State, EventsInit, HostClassKeys, CssVarKeys, SlotNames, TestIds>

    DeclarativeElementHost: SetRequiredAndNotNull<
        Omit<
            DeclarativeElement<
                TagName,
                Inputs,
                State,
                EventsInit,
                HostClassKeys,
                CssVarKeys,
                SlotNames,
                TestIds,
            >,
            Exclude<
                keyof StaticDeclarativeElementProperties<
                    any,
                    any,
                    any,
                    any,
                    any,
                    any,
                    any,
                    any,
                >,
                keyof HTMLElement,
            >,
        >,
        "shadowRoot",
    >

    The host type for a declarative element. This references a declarative element instance's top-level HTML element and always contains a shadow root (wherein the element is rendered).

    Type Parameters