@@ -2664,6 +2664,7 @@ export abstract class View extends ViewBase {
2664
2664
public static layoutChangedEvent: string ;
2665
2665
public static layoutChild(parent : View , child : View , left : number , top : number , right : number , bottom : number ): void ;
2666
2666
public layoutNativeView(left : number , top : number , right : number , bottom : number ): void ;
2667
+ _manager: any ;
2667
2668
margin: string | PercentLength ;
2668
2669
marginBottom: PercentLength ;
2669
2670
marginLeft: PercentLength ;
@@ -2677,10 +2678,10 @@ export abstract class View extends ViewBase {
2677
2678
// (undocumented)
2678
2679
_modalParent? : View ;
2679
2680
off(eventNames : string | GestureTypes , callback ? : (args : EventData ) => void , thisArg ? : any );
2680
- on(event : " loaded" , callback : (args : EventData ) => void , thisArg ? : any );
2681
- on(event : " shownModally" , callback : (args : ShownModallyData ) => void , thisArg ? : any );
2682
2681
on(event : " showingModally" , callback : (args : ShownModallyData ) => void , thisArg ? : any ): void ;
2683
2682
on(event : " androidBackPressed" , callback : (args : EventData ) => void , thisArg ? : any );
2683
+ on(event : " shownModally" , callback : (args : ShownModallyData ) => void , thisArg ? : any );
2684
+ on(event : " loaded" , callback : (args : EventData ) => void , thisArg ? : any );
2684
2685
on(event : " unloaded" , callback : (args : EventData ) => void , thisArg ? : any );
2685
2686
on(eventNames : string | GestureTypes , callback : (args : EventData ) => void , thisArg ? : any );
2686
2687
_onAttachedToWindow(): void ;
0 commit comments