export function isMatrixReadySyncState(
state: MatrixSyncState | null | undefined,
): state is "PREPARED" | "SYNCING" | "CATCHUP" { return state === "PREPARED" || state === "SYNCING" || state === "CATCHUP";
}
export function isMatrixDisconnectedSyncState(
state: MatrixSyncState | null | undefined,
): state is "RECONNECTING" | "ERROR" | "STOPPED" { return state === "RECONNECTING" || state === "ERROR" || state === "STOPPED";
}
export function isMatrixTerminalSyncState(
state: MatrixSyncState | null | undefined,
): state is "STOPPED" { // matrix-js-sdk can recover from ERROR to PREPARED during initial sync. return state === "STOPPED";
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-06-08)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.