You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* String value used when hooking to shownModally event.
51
+
*/
52
+
publicstaticshownModallyEvent: string;
53
+
54
+
/**
55
+
* String value used when hooking to navigatingTo event.
56
+
*/
57
+
publicstaticnavigatingToEvent: string;
58
+
49
59
/**
50
60
* String value used when hooking to navigatedTo event.
51
61
*/
52
62
publicstaticnavigatedToEvent: string;
53
63
64
+
/**
65
+
* String value used when hooking to navigatingFrom event.
66
+
*/
67
+
publicstaticnavigatingFromEvent: string;
68
+
69
+
/**
70
+
* String value used when hooking to navigatedFrom event.
71
+
*/
72
+
publicstaticnavigatedFromEvent: string;
73
+
54
74
constructor(options?: Options)
55
75
56
76
/**
@@ -85,29 +105,6 @@ declare module "ui/page" {
85
105
*/
86
106
optionsMenu: OptionsMenu;
87
107
88
-
/**
89
-
* A method called before navigating to the page.
90
-
* @param context - The data passed to the page through the NavigationEntry.context property.
91
-
*/
92
-
onNavigatingTo(context: any): void;
93
-
94
-
/**
95
-
* A method called after navigated to the page.
96
-
* @param context - The data passed to the page through the NavigationEntry.context property.
97
-
*/
98
-
onNavigatedTo(context: any): void;
99
-
100
-
/**
101
-
* A method called before navigating from the page.
102
-
*/
103
-
onNavigatingFrom(): void;
104
-
105
-
/**
106
-
* A method called after navigated from the page.
107
-
* @param isBackNavigation - True if the Page is being navigated from using the Frame.goBack() method, false otherwise.
108
-
*/
109
-
onNavigatedFrom(isBackNavigation: boolean): void;
110
-
111
108
/**
112
109
* A basic method signature to hook an event listener (shortcut alias to the addEventListener method).
113
110
* @param eventNames - String corresponding to events (e.g. "propertyChange"). Optionally could be used more events separated by `,` (e.g. "propertyChange", "change").
0 commit comments