UNPKG

@awarns/tracing

Version:

AwarNS Framework package that eases the tracing and debugging of complex task execution workflows

17 lines (16 loc) 462 B
import { TraceType } from './trace-type'; import { TraceResult } from './trace-result'; export declare class Trace { chainId: string; type: TraceType; name: string; result: TraceResult; content: { [key: string]: unknown; }; timestamp: Date; id: string; constructor(chainId: string, type: TraceType, name: string, result: TraceResult, content: { [key: string]: unknown; }, timestamp?: Date, id?: string); }