Marmot-TS
    Preparing search index...

    Type Alias PendingState

    Staged state awaiting publish confirmation (publish-before-apply).

    type PendingState = {
        commitMessage?: MlsMessage;
        kind: "proposal" | "commit" | "selfUpdate";
        newState: ClientState;
        parentState?: ClientState;
    }
    Index

    Engine

    commitMessage?: MlsMessage

    Applied commit MLS message; required for commits (retained-history).

    kind: "proposal" | "commit" | "selfUpdate"
    newState: ClientState
    parentState?: ClientState

    Parent state before apply; required for commits (retained-history).