Skip to content

Commit 1986d34

Browse files
committed
fixup! [IMP] collaborative: add color to non-displayed user
1 parent 7a0b1e4 commit 1986d34

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ import { DEFAULT_LOCALE } from "./types/locale";
208208
export const __info__ = {};
209209
export { LocalTransportService } from "./collaborative/local_transport_service";
210210
export { Revision } from "./collaborative/revisions";
211+
export { ClientDisconnectedError } from "./collaborative/session";
211212
export { tokenColors } from "./components/composer/composer/abstract_composer_store";
212213
export { Spreadsheet } from "./components/index";
213214
export { setDefaultSheetViewSize } from "./constants";

src/types/collaborative/session.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ export interface Client {
1010
color?: Color;
1111
}
1212

13+
export interface ClientWithPosition extends Client {
14+
position: ClientPosition;
15+
}
16+
1317
export interface ClientWithColor extends Client {
1418
color: Color;
1519
}

0 commit comments

Comments
 (0)