Interface TemporalCursor

A history cursor: a checkpoint id, or a typed cursor value.

interface TemporalCursor {
    checkpointId?: string;
    cursorType?: TemporalCursorType;
    cursorValue?: string;
}

Properties

checkpointId?: string
cursorType?: TemporalCursorType
cursorValue?: string