AngularTS
    Preparing search index...

    Interface ScopeEvent

    Event object passed to $emit and $broadcast listeners.

    Tracks target scope, current scope, name, propagation/default flags, and control methods.

    interface ScopeEvent {
        currentScope: ScopeTarget | null;
        defaultPrevented: boolean;
        name: string;
        stopped: boolean;
        targetScope: ScopeTarget;
        preventDefault(): void;
        stopPropagation?(): void;
    }
    Index

    Properties

    currentScope: ScopeTarget | null
    defaultPrevented: boolean
    name: string
    stopped: boolean
    targetScope: ScopeTarget

    Methods

    • Returns void

    • Returns void