fix(core): Update types for TypeScript nullability support (#15472)
This commit is contained in:

committed by
Victor Berchet

parent
331b9f6425
commit
910c0d9ee7
4
tools/public_api_guard/core/testing.d.ts
vendored
4
tools/public_api_guard/core/testing.d.ts
vendored
@ -9,8 +9,8 @@ export declare class ComponentFixture<T> {
|
||||
debugElement: DebugElement;
|
||||
elementRef: ElementRef;
|
||||
nativeElement: any;
|
||||
ngZone: NgZone;
|
||||
constructor(componentRef: ComponentRef<T>, ngZone: NgZone, _autoDetect: boolean);
|
||||
ngZone: NgZone | null;
|
||||
constructor(componentRef: ComponentRef<T>, ngZone: NgZone | null, _autoDetect: boolean);
|
||||
autoDetectChanges(autoDetect?: boolean): void;
|
||||
checkNoChanges(): void;
|
||||
destroy(): void;
|
||||
|
Reference in New Issue
Block a user