@tigorhutasuhut/telemetry-js - v0.7.3
    Preparing search index...

    Interface TracedCallContext

    Context passed to the traced factory function at each method call.

    interface TracedCallContext {
        args: unknown[];
        className: string;
        methodName: string;
    }
    Index

    Properties

    args: unknown[]

    Arguments passed to the method call.

    className: string

    Class name (from this.constructor.name).

    methodName: string

    Decorated method name.