@@ -59,19 +59,19 @@ function initializeEditTextListeners(): void {
5959 return global . __native ( this ) ;
6060 }
6161
62- public beforeTextChanged ( text : string , start : number , count : number , after : number ) {
62+ public beforeTextChanged ( text : string , start : number , count : number , after : number ) : void {
6363 //
6464 }
6565
66- public onTextChanged ( text : string , start : number , before : number , count : number ) {
66+ public onTextChanged ( text : string , start : number , before : number , count : number ) : void {
6767 // const owner = this.owner;
6868 // let selectionStart = owner.android.getSelectionStart();
6969 // owner.android.removeTextChangedListener(owner._editTextListeners);
7070 // owner.android.addTextChangedListener(owner._editTextListeners);
7171 // owner.android.setSelection(selectionStart);
7272 }
7373
74- public afterTextChanged ( editable : android . text . IEditable ) {
74+ public afterTextChanged ( editable : android . text . IEditable ) : void {
7575 const owner = this . owner ;
7676 if ( ! owner || owner . _changeFromCode ) {
7777 return ;
@@ -89,7 +89,7 @@ function initializeEditTextListeners(): void {
8989 }
9090 }
9191
92- public onFocusChange ( view : android . view . View , hasFocus : boolean ) {
92+ public onFocusChange ( view : android . view . View , hasFocus : boolean ) : void {
9393 const owner = this . owner ;
9494 if ( ! owner ) {
9595 return ;
0 commit comments