UNPKG

@gentrace/core

Version:
17 lines (16 loc) 598 B
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>;