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

    Type Alias EmbodyChain

    Chainable builder returned by embody and all chain methods.

    All validation is synchronous — errors throw immediately. .steps is the only async property (it triggers the actual trace).

    type EmbodyChain = {
        resolvedConfig: ResolvedConfig;
        steps: Promise<readonly StepCore[]>;
        code(source: string): EmbodyChain;
        config(cfg: unknown): EmbodyChain;
        tracer(tracerModule: TracerModule): EmbodyChain;
    }
    Index

    Properties

    resolvedConfig: ResolvedConfig
    steps: Promise<readonly StepCore[]>

    Methods