TinyBase logoTinyBase β

ForwardCheckpointsViewProps

ForwardCheckpointsViewProps props are used for components that refer to a list of future checkpoints in a Checkpoints object, such as the ForwardCheckpointsView component.

{
  checkpoints?: CheckpointsOrCheckpointsId;
  separator?: Snippet<[]>;
  debugIds?: boolean;
  checkpoint?: Snippet<[checkpointId: Id]>;
}
TypeDescription
checkpoints?CheckpointsOrCheckpointsId

The Checkpoints object to be accessed: omit for the default context Checkpoints object, provide an Id for a named context Checkpoints object, or provide an explicit reference.

separator?Snippet<[]>

A component or string to separate each rendered checkpoint.

debugIds?boolean

Whether the component should also render the Ids of the checkpoints to assist with debugging.

checkpoint?Snippet<[checkpointId: Id]>

A snippet for rendering each checkpoint in the Checkpoints object.

Since

v8.1.0