Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -944,4 +944,9 @@ export class TextInput extends TextInputBase {
* Removes all text from the input.
*/
clear: () => void;

/**
* Sets the start and end positions of text selection.
*/
setSelection: (start: number, end: number) => void;
}