Vinyl
    Preparing search index...

    Interface OperationCompletedEvent<K>

    interface OperationCompletedEvent<K> {
        duration: number;
        ended: number;
        reason: K;
        started: number;
    }

    Type Parameters

    • K

    Hierarchy (View Summary)

    Index

    Properties

    duration: number

    The total number of seconds the operation took.

    ended: number

    The timestamp the operation completed.

    reason: K

    The reason the operation completed.

    started: number

    The timestamp the operation began.