banira
    Preparing search index...

    Interface CemEvent

    interface CemEvent {
        deprecated?: string | boolean;
        description?: string;
        detailType?: { text: string };
        name: string;
        type?: { text: string };
    }
    Index

    Properties

    deprecated?: string | boolean

    Present when the event is marked @deprecated; the string is the deprecation note, if any.

    description?: string
    detailType?: { text: string }

    The event's detail payload type, when known — from a new CustomEvent<Detail>(...) type argument or a @fires {Detail} name tag. Lets downstream generators emit CustomEvent<Detail> instead of a bare CustomEvent.

    name: string
    type?: { text: string }