1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-23 15:42:28 +03:00

apply review feedback from @lukebarnard1

(cherry picked from commit 37d4bce)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Matthew Hodgson
2018-07-09 00:52:27 +01:00
committed by Michael Telatynski
parent 83f2614919
commit 021409aafe
6 changed files with 38 additions and 116 deletions

View File

@@ -29,9 +29,9 @@ import NotifProvider from './NotifProvider';
import Promise from 'bluebird';
export type SelectionRange = {
beginning: boolean,
start: number,
end: number
beginning: boolean, // whether the selection is in the first block of the editor or not
start: number, // byte offset relative to the start anchor of the current editor selection.
end: number, // byte offset relative to the end anchor of the current editor selection.
};
export type Completion = {