@angular/core 8.0.1 → 8.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/core-testing.umd.js +1 -1
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core-testing.umd.min.js +1 -1
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +2 -2
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +2 -2
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/version.js +1 -1
- package/esm2015/testing/src/test_bed_common.js +5 -2
- package/esm5/src/version.js +1 -1
- package/esm5/testing/src/test_bed_common.js +1 -1
- package/fesm2015/core.js +2 -2
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm2015/testing.js.map +1 -1
- package/fesm5/core.js +2 -2
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/fesm5/testing.js.map +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +5 -2
- package/testing.d.ts +1 -1
package/package.json
CHANGED
package/src/r3_symbols.d.ts
CHANGED
package/testing/testing.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v8.0.
|
|
2
|
+
* @license Angular v8.0.2
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -383,7 +383,10 @@ export declare interface TestBedStatic {
|
|
|
383
383
|
}): TestBedStatic;
|
|
384
384
|
get<T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, flags?: InjectFlags): any;
|
|
385
385
|
/**
|
|
386
|
-
*
|
|
386
|
+
* deprecated from v8.0.0 use Type<T> or InjectionToken<T>
|
|
387
|
+
* This does not use the deprecated jsdoc tag on purpose
|
|
388
|
+
* because it renders all overloads as deprecated in TSLint
|
|
389
|
+
* due to https://github.com/palantir/tslint/issues/4522.
|
|
387
390
|
*/
|
|
388
391
|
get(token: any, notFoundValue?: any): any;
|
|
389
392
|
createComponent<T>(component: Type<T>): ComponentFixture<T>;
|
package/testing.d.ts
CHANGED