File tree Expand file tree Collapse file tree 3 files changed +80
-9
lines changed
Expand file tree Collapse file tree 3 files changed +80
-9
lines changed Original file line number Diff line number Diff line change 44import {
55 type Presence ,
66 StateFactory ,
7- LatestRawEvents ,
87 StatesWorkspace ,
9- LatestRaw ,
108 AttendeeId ,
119 ClientConnectionId ,
10+ LatestRaw ,
11+ LatestRawEvents ,
1212} from "@fluidframework/presence/alpha" ;
1313import { Listenable } from "fluid-framework" ;
1414import { DragManager } from "./Interfaces/DragManager.js" ;
Original file line number Diff line number Diff line change 99 StateFactory ,
1010 LatestRawEvents ,
1111 StatesWorkspace ,
12- LatestRaw as LatestState ,
12+ LatestRaw ,
1313 AttendeeId ,
1414 ClientConnectionId ,
1515} from "@fluidframework/presence/alpha" ;
@@ -28,7 +28,7 @@ export function createTypedSelectionManager(props: {
2828 class SelectionManagerImpl implements SelectionManager < TypedSelection > {
2929 initialState : TypedSelection [ ] = [ ] ; // Default initial state for the selection manager
3030
31- state : LatestState < TypedSelection [ ] > ;
31+ state : LatestRaw < TypedSelection [ ] > ;
3232
3333 constructor (
3434 name : string ,
@@ -163,7 +163,7 @@ export function createSelectionManager(props: {
163163 class SelectionManagerImpl implements SelectionManager {
164164 initialState : Selection [ ] = [ ] ; // Default initial state for the selection manager
165165
166- state : LatestState < Selection [ ] > ;
166+ state : LatestRaw < Selection [ ] > ;
167167
168168 constructor (
169169 name : string ,
You can’t perform that action at this time.
0 commit comments