banira
    Preparing search index...

    Interface SmokeResult

    interface SmokeResult {
        error?: string;
        file: string;
        ok: boolean;
        reflection?: ReflectionIssue[];
        slots?: SlotIssue[];
        tagName: string;
    }
    Index

    Properties

    error?: string

    Failure reason when ok is false.

    file: string

    Source module the element is defined in.

    ok: boolean
    reflection?: ReflectionIssue[]

    Attribute↔property reflection mismatches (#39). Present (possibly empty) when the reflection check ran. Advisory: these don't flip ok.

    slots?: SlotIssue[]

    Declared-vs-actual slot discrepancies (#40). Present (possibly empty) when the slot check ran. Advisory: these don't flip ok.

    tagName: string