TextSessionState import { TextSessionState } from "destack:input/binding"; Text input session state. export struct TextSessionState { text: string; selection: TextRange; composing: TextRange; } language/library/src/input/binding/text.ds:91:98 Members text: string Full text state. selection: TextRange Current selection range in UTF-16 code units. composing: TextRange Current composing range in UTF-16 code units when composition is active.