File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -208,6 +208,7 @@ import { DEFAULT_LOCALE } from "./types/locale";
208
208
export const __info__ = { } ;
209
209
export { LocalTransportService } from "./collaborative/local_transport_service" ;
210
210
export { Revision } from "./collaborative/revisions" ;
211
+ export { ClientDisconnectedError } from "./collaborative/session" ;
211
212
export { tokenColors } from "./components/composer/composer/abstract_composer_store" ;
212
213
export { Spreadsheet } from "./components/index" ;
213
214
export { setDefaultSheetViewSize } from "./constants" ;
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ export interface Client {
10
10
color ?: Color ;
11
11
}
12
12
13
+ export interface ClientWithPosition extends Client {
14
+ position : ClientPosition ;
15
+ }
16
+
13
17
export interface ClientWithColor extends Client {
14
18
color : Color ;
15
19
}
You can’t perform that action at this time.
0 commit comments