@gentrace/core
Version:
Core Gentrace Node.JS library
17 lines (16 loc) • 598 B
TypeScript
import { Context } from "./context";
export declare class StepRun {
providerName: string;
invocation: string;
elapsedTime: number;
startTime: string;
endTime: string;
inputs: any;
modelParams: any;
outputs: any;
context: Context;
error: string | undefined;
constructor(providerName: string, invocation: string, elapsedTime: number, startTime: string, endTime: string, inputs: any, modelParams: any, outputs: any, context: Context, error: string | undefined);
}
export type StepRunType = typeof StepRun;
export type PartialStepRunType = Partial<StepRun>;