Package-level declarations
Types
Link copied to clipboard
data class PositionNode(val parentId: String, val position: Int, val nextPosition: PositionNode? = null)
Link copied to clipboard
data class StoryState(val stories: Map<Int, StoryStep>, val lastEdit: LastEdit = LastEdit.Nothing, val focus: Int? = null, val selection: Selection = Selection.start())
The state of document of the TextEditor of Writeopia. This class has all the stories in their updated state and which one has the current focus.