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
* Plugs in the default binding language from aurelia-templating-binding.
109
-
*
110
-
* @method defaultBindingLanguage
111
-
* @return {FrameworkConfiguration} Returns the current FrameworkConfiguration instance.
89
+
* @return Returns the current FrameworkConfiguration instance.
112
90
*/
113
91
defaultBindingLanguage(): FrameworkConfiguration;
114
92
115
93
/**
116
94
* Plugs in the router from aurelia-templating-router.
117
-
*
118
-
* @method router
119
-
* @return {FrameworkConfiguration} Returns the current FrameworkConfiguration instance.
95
+
* @return Returns the current FrameworkConfiguration instance.
120
96
*/
121
97
router(): FrameworkConfiguration;
122
98
123
99
/**
124
100
* Plugs in the default history implementation from aurelia-history-browser.
125
-
*
126
-
* @method history
127
-
* @return {FrameworkConfiguration} Returns the current FrameworkConfiguration instance.
101
+
* @return Returns the current FrameworkConfiguration instance.
128
102
*/
129
103
history(): FrameworkConfiguration;
130
104
131
105
/**
132
106
* Plugs in the default templating resources (if, repeat, show, compose, etc.) from aurelia-templating-resources.
133
-
*
134
-
* @method defaultResources
135
-
* @return {FrameworkConfiguration} Returns the current FrameworkConfiguration instance.
107
+
* @return Returns the current FrameworkConfiguration instance.
136
108
*/
137
109
defaultResources(): FrameworkConfiguration;
138
110
139
111
/**
140
112
* Plugs in the event aggregator from aurelia-event-aggregator.
141
-
*
142
-
* @method eventAggregator
143
-
* @return {FrameworkConfiguration} Returns the current FrameworkConfiguration instance.
113
+
* @return Returns the current FrameworkConfiguration instance.
144
114
*/
145
115
eventAggregator(): FrameworkConfiguration;
146
116
147
117
/**
148
118
* Sets up the Aurelia configuration. This is equivalent to calling `.defaultBindingLanguage().defaultResources().history().router().eventAggregator();`
149
-
*
150
-
* @method standardConfiguration
151
-
* @return {FrameworkConfiguration} Returns the current FrameworkConfiguration instance.
119
+
* @return Returns the current FrameworkConfiguration instance.
152
120
*/
153
121
standardConfiguration(): FrameworkConfiguration;
154
122
155
123
/**
156
124
* Plugs in the ConsoleAppender and sets the log level to debug.
157
-
*
158
-
* @method developmentLogging
159
125
* @return {FrameworkConfiguration} Returns the current FrameworkConfiguration instance.
160
126
*/
161
127
developmentLogging(): FrameworkConfiguration;
162
128
163
129
/**
164
130
* Loads and configures the plugins registered with this instance.
165
-
*
166
-
* @method apply
167
131
* @return Returns a promise which resolves when all plugins are loaded and configured.
168
132
*/
169
133
apply(): Promise<void>;
170
134
}
171
135
172
136
/**
173
137
* The framework core that provides the main Aurelia object.
174
-
*
175
-
* @class Aurelia
176
-
* @constructor
177
-
* @param {Loader} loader The loader for this Aurelia instance to use. If a loader is not specified, Aurelia will use a defaultLoader.
178
-
* @param {Container} container The dependency injection container for this Aurelia instance to use. If a container is not specified, Aurelia will create an empty container.
179
-
* @param {ViewResources} resources The resource registry for this Aurelia instance to use. If a resource registry is not specified, Aurelia will create an empty registry.
138
+
* @param loader The loader for this Aurelia instance to use. If a loader is not specified, Aurelia will use a defaultLoader.
139
+
* @param container The dependency injection container for this Aurelia instance to use. If a container is not specified, Aurelia will create an empty container.
140
+
* @param resources The resource registry for this Aurelia instance to use. If a resource registry is not specified, Aurelia will create an empty registry.
0 commit comments