generated from MatrixAI/TypeScript-Demo-Lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
developmentStandard developmentStandard development
Description
Specification
As per some comments on #15, some design changes have been proposed and must be implemented.
Additional context
Example new type (instead of a single unified one):
type SpanId = IdSortableEncoded;
type SpanStart = {
type: 'Start';
id: SpanId;
parentId?: SpanId;
};
type SpanStop = {
type = 'Stop';
id: SpanId;
startId: SpanId;
parentId?: SpanId;
};
Tasks
- Change the terminology to
start
andstop
orbegin
andend
instead ofstart
andend
. - Need to incorporate the nodeId into the IdSortable
- The
parentId
may or may not exist for both start and stop, and that means there's a possibility of a spans in one location and then fading out and then fading into another location
Metadata
Metadata
Assignees
Labels
developmentStandard developmentStandard development