sesaparcours
    Preparing search index...

    Interface ConnectionMovedParams<E>

    Definition of the parameters passed to a listener for the connection:move event.

    interface ConnectionMovedParams<E = any> {
        connection: Connection<E>;
        index: number;
        newEndpoint: Endpoint<E>;
        newSourceId: string;
        newTargetId: string;
        originalEndpoint: Endpoint<E>;
        originalSourceId: string;
        originalTargetId: string;
    }

    Type Parameters

    • E = any
    Index

    Properties

    connection: Connection<E>
    index: number
    newEndpoint: Endpoint<E>
    newSourceId: string
    newTargetId: string
    originalEndpoint: Endpoint<E>
    originalSourceId: string
    originalTargetId: string