build: allow users to specify --strictNullChecks (#14382)
PR Close #14382
This commit is contained in:
7
tools/public_api_guard/core/index.d.ts
vendored
7
tools/public_api_guard/core/index.d.ts
vendored
@ -211,11 +211,12 @@ export declare abstract class ChangeDetectorRef {
|
||||
export declare function Class(clsDef: ClassDefinition): Type<any>;
|
||||
|
||||
/** @stable */
|
||||
export interface ClassDefinition {
|
||||
constructor: Function | any[];
|
||||
export declare type ClassDefinition = {
|
||||
extends?: Type<any>;
|
||||
constructor: Function | any[];
|
||||
} & {
|
||||
[x: string]: Type<any> | Function | any[];
|
||||
}
|
||||
};
|
||||
|
||||
/** @stable */
|
||||
export interface ClassProvider {
|
||||
|
Reference in New Issue
Block a user