Rename field

This commit is contained in:
Andras Schmelczer 2025-08-17 10:57:50 +01:00
parent cf8c9ebe00
commit 278fa912df
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 8 additions and 3 deletions

View file

@ -4,5 +4,5 @@ import type { DocumentWithCursors } from "./DocumentWithCursors";
export interface ClientCursors {
userName: string;
deviceId: string;
cursors: DocumentWithCursors[];
documentsWithCursors: DocumentWithCursors[];
}

View file

@ -0,0 +1,5 @@
import type { ClientCursors } from "../services/types/ClientCursors";
export interface DocumentWithMaybeOutdatedClientCursors extends ClientCursors {
isOutdated: boolean;
}