Member Junction
    Preparing search index...

    Definition of a single event of a component.

    interface ComponentEvent {
        cancelable?: boolean;
        description: string;
        name: string;
        pairedEvent?: string;
        parameters?: ComponentEventParameter[];
    }
    Index

    Properties

    cancelable?: boolean

    Whether this is a cancelable "before" event

    description: string

    A description of what this event does

    name: string

    The name of the event

    pairedEvent?: string

    The paired "after" event name (if this is a "before" event)

    An array of parameters that this event can emit.