travels
    Preparing search index...

    Type Alias TravelJournal<S, F, P>

    TravelJournal: Pick<
        Travels<S, F, true, P>,

            | "subscribe"
            | "getState"
            | "recordPatches"
            | "getHistory"
            | "getHistorySnapshot"
            | "go"
            | "back"
            | "forward"
            | "rebase"
            | "canBack"
            | "canForward"
            | "getPosition"
            | "getPatches"
            | "serialize"
            | "assertPersistenceCompatible"
            | "getMetadata"
            | "getHistoryEntries",
    >

    Public surface for a timeline whose state is owned by another runtime.

    State-owning methods such as setState(), reset(), transactions, tracking controls, and getControls() are intentionally excluded. External commits enter through recordPatches(); navigation leaves through apply.

    Type Parameters