
BREAKING CHANGE Previously it was possible to pass a custom error reporter to bootstrap, which was used only during the construction of Injector. This had limited utility, so this capability has been removed.
14 lines
385 B
Dart
14 lines
385 B
Dart
library angular2.application_static;
|
|
|
|
import 'dart:async';
|
|
import 'application_common.dart';
|
|
|
|
/// Starts an application from a root component.
|
|
///
|
|
/// See [commonBootstrap] for detailed documentation.
|
|
Future<ApplicationRef> bootstrapStatic(
|
|
Type appComponentType,
|
|
[List componentInjectableBindings]) {
|
|
return commonBootstrap(appComponentType, componentInjectableBindings);
|
|
}
|