diff --git a/lib/format.d.ts b/lib/format.d.ts index f0cb8c2..865a4f6 100644 --- a/lib/format.d.ts +++ b/lib/format.d.ts @@ -46,6 +46,9 @@ export interface TimelineEvent { // Text label to be associated with the timeline entry label: string; + // Additional [optiona] text based information to bucket events by. + facet?: string; + // Process / Thread that the events are associated with. rowId: string; @@ -59,7 +62,6 @@ export interface InternalTimelineEvent extends TimelineEvent { duration?: number; // Process / Thread index row?: number; - facet?: string; // Internal ID for Event tracking [Shared with RenderOp] uuid?: string; }