fix(core): temporarily remove @deprecated jsdoc tag for a TextBed.get overload (#30514)
PR #29290 introduced a new `TestBed.get` signature and deprecated the existing one. This raises a lot of TSLint deprecation warnings in projects using a strict TS config (see #29905 for context), so we are temporarily removing the `@deprecated` annotation in favor of a plain text warning until we properly fix it. Refs #29905 Fixes FW-1336 PR Close #30514
This commit is contained in:
parent
6debe9dfb9
commit
f6bf8928f2
|
@ -57,8 +57,14 @@ export interface TestBed {
|
|||
compileComponents(): Promise<any>;
|
||||
|
||||
get<T>(token: Type<T>|InjectionToken<T>, notFoundValue?: T, flags?: InjectFlags): any;
|
||||
|
||||
// TODO: switch back to official deprecation marker once TSLint issue is resolved
|
||||
// https://github.com/palantir/tslint/issues/4522
|
||||
/**
|
||||
* @deprecated from v8.0.0 use Type<T> or InjectionToken<T>
|
||||
* deprecated from v8.0.0 use Type<T> or InjectionToken<T>
|
||||
* This does not use the deprecated jsdoc tag on purpose
|
||||
* because it renders all overloads as deprecated in TSLint
|
||||
* due to https://github.com/palantir/tslint/issues/4522.
|
||||
*/
|
||||
get(token: any, notFoundValue?: any): any;
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ export interface TestBed {
|
|||
createComponent<T>(component: Type<T>): ComponentFixture<T>;
|
||||
execute(tokens: any[], fn: Function, context?: any): any;
|
||||
get<T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, flags?: InjectFlags): any;
|
||||
/** @deprecated */ get(token: any, notFoundValue?: any): any;
|
||||
get(token: any, notFoundValue?: any): any;
|
||||
initTestEnvironment(ngModule: Type<any> | Type<any>[], platform: PlatformRef, aotSummaries?: () => any[]): void;
|
||||
overrideComponent(component: Type<any>, override: MetadataOverride<Component>): void;
|
||||
overrideDirective(directive: Type<any>, override: MetadataOverride<Directive>): void;
|
||||
|
|
Loading…
Reference in New Issue