Return user name for cursors rather than device

This commit is contained in:
Andras Schmelczer 2025-06-07 22:13:07 +01:00
parent 14db4bf240
commit 02f32e894a
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 27 additions and 12 deletions

View file

@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { CursorSpan } from "./CursorSpan";
export type ClientCursors = { deviceId: string, cursors: { [key in string]?: Array<CursorSpan> }, };
export type ClientCursors = { userName: string, deviceId: string, cursors: { [key in string]?: Array<CursorSpan> }, };