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

    Type Alias TracifyClosure

    TracifyClosure: {
        code: string | undefined;
        config: object | undefined;
        error: undefined;
        ok: true;
        steps: undefined;
        tracer: TracerModule | undefined;
    } & (remaining: TracifyInput) => Promise<TracifyResult> | TracifyClosure

    Callable closure returned by tracify() when not all fields are provided. Call it with remaining fields to complete the trace, or inspect its properties to see what state has been accumulated so far.