@bodil/dom
    Preparing search index...

    Interface QuerySlotOptions

    interface QuerySlotOptions {
        instanceOf?: Constructor<unknown>;
        nodes?: boolean;
        reactive?: boolean;
        selector?: string;
        slot?: string;
    }

    Hierarchy

    Properties

    instanceOf?: Constructor<unknown>

    A class constructor to filter by, eg. instanceOf: HTMLDivElement

    nodes?: boolean

    Whether to include all nodes instead of just elements.

    reactive?: boolean

    Create a signal which will update with changes to the slot's contents.

    selector?: string

    A CSS selector to filter by.

    slot?: string

    The name of the slot to query, or undefined for the default slot.