core-utils
    Preparing search index...

    Tracer interface for distributed tracing operations.

    interface Tracer {
        trace: <T>(
            name: string,
            options: TraceOptions,
            fun: (span?: Span) => T,
        ) => T;
    }
    Index
    trace: <T>(name: string, options: TraceOptions, fun: (span?: Span) => T) => T