banira
    Preparing search index...

    Interface SlotIssue

    A discrepancy between a component's declared @slots and its shadow <slot>s (#40).

    interface SlotIssue {
        kind: "missing" | "unassigned" | "undeclared";
        message: string;
        slot: string;
    }
    Index

    Properties

    Properties

    kind: "missing" | "unassigned" | "undeclared"
    message: string
    slot: string

    The slot name; empty string for the default slot.