Skip to content

Commit dbd8561

Browse files
committed
style(core): add missing type annotation
1 parent 1d03c2a commit dbd8561

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/src/dom/element.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {Element} from 'facade/dom';
22

33
export class NgElement {
44
domElement:Element;
5-
constructor(domElement) {
5+
constructor(domElement:Element) {
66
this.domElement = domElement;
77
}
88
}

0 commit comments

Comments
 (0)