forked from angulardart/angular
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathangular.dart
80 lines (78 loc) · 2.22 KB
/
angular.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/// The primary library for the [AngularDart web framework][AngularDart].
///
/// Import this library as follows:
///
/// ```
/// import 'package:ngdart/angular.dart';
/// ```
///
/// For help using this library, see the AngularDart documentation:
///
/// * [AngularDart guide][]
/// * [AngularDart cheat sheet][cheatsheet]
///
/// [AngularDart]: https://angulardart.xyz
/// [AngularDart guide]: https://angulardart.xyz/guide
/// [cheatsheet]: https://angulardart.xyz/cheatsheet
library;
export 'src/bootstrap/run.dart' show runApp, runAppAsync;
export 'src/common/directives.dart';
export 'src/common/pipes.dart';
export 'src/core/application_ref.dart' show ApplicationRef;
export 'src/core/application_tokens.dart' show appId;
export 'src/core/change_detection.dart';
export 'src/core/exception_handler.dart' show ExceptionHandler;
export 'src/core/linker.dart';
export 'src/core/zone/ng_zone.dart' show NgZone, UncaughtError;
export 'src/devtools.dart' show enableDevTools, registerContentRoot;
export 'src/di/errors.dart' show InjectionError, NoProviderError;
export 'src/di/injector.dart' show Injector, InjectorFactory;
export 'src/meta.dart'
show
AfterChanges,
AfterContentChecked,
AfterContentInit,
AfterViewChecked,
AfterViewInit,
Attribute,
ChangeDetectionStrategy,
ChangeDetectorState,
ClassProvider,
Component,
ContentChild,
ContentChildren,
Directive,
DoCheck,
ExistingProvider,
FactoryProvider,
GenerateInjector,
Host,
HostBinding,
HostListener,
Inject,
Injectable,
Input,
Module,
MultiToken,
OnDestroy,
OnInit,
OpaqueToken,
Optional,
Output,
Pipe,
Provider,
Self,
SkipSelf,
Typed,
ValueProvider,
ViewChild,
ViewChildren,
ViewEncapsulation,
Visibility,
noValueProvided,
provide,
visibleForTemplate;
export 'src/runtime/check_binding.dart' show debugCheckBindings;
// TODO(b/116697059): Move to a testonly=1 library.
export 'src/testability.dart'
show testabilityProvider, Testability, TestabilityRegistry;