fix(core): fix type of DebugNode.properties
(#8964)
Properties can have any value, not just strings.
This commit is contained in:

committed by
Miško Hevery

parent
6f281ab3c4
commit
ddd2ac4f55
@ -54,7 +54,7 @@ export class DebugNode {
|
||||
*/
|
||||
export class DebugElement extends DebugNode {
|
||||
name: string;
|
||||
properties: {[key: string]: string};
|
||||
properties: {[key: string]: any};
|
||||
attributes: {[key: string]: string};
|
||||
childNodes: DebugNode[];
|
||||
nativeElement: any;
|
||||
|
Reference in New Issue
Block a user