@study-lenses/tracing
    Preparing search index...

    Type Alias ResolvedConfig

    Fully resolved config passed to every tracer's record function. Contains both meta limits and tracer-specific options (all with defaults filled).

    Tracers receive FULLY FILLED config — never partial, never undefined fields. Tracers can trust this completely and focus on pure tracing logic.

    type ResolvedConfig = {
        meta: MetaConfig;
        options: Record<string, unknown>;
    }
    Index

    Properties

    Properties

    Execution limits (fully filled, defaults applied)

    options: Record<string, unknown>

    Tracer-specific resolved options (with defaults filled)