export interface MarkTiming { timingKey: string; pipelineId?: string; timeStamp: number; } export type MarkTimingInternal = (timingKey: string, pipelineId?: string, timeStamp?: number) => void;