@arcmantle/adapter-element
    Preparing search index...

    Interface AdapterMetadata

    interface AdapterMetadata {
        changedProps: Map<string | number | symbol, any>;
        observedAttributes: string[];
        pluginContainer?: PluginContainer;
        previousProps: Map<string | number | symbol, any>;
        propertyMetadata: Record<
            string,
            {
                initialValue?: any;
                propName: string;
                reflect: boolean;
                type: PropertyType;
            },
        >;
        signalProps: string[];
        styles?: CSSStyleSheet[];
    }
    Index

    Properties

    changedProps: Map<string | number | symbol, any>
    observedAttributes: string[]
    pluginContainer?: PluginContainer
    previousProps: Map<string | number | symbol, any>
    propertyMetadata: Record<
        string,
        {
            initialValue?: any;
            propName: string;
            reflect: boolean;
            type: PropertyType;
        },
    >
    signalProps: string[]
    styles?: CSSStyleSheet[]