style(core): add missing type annotation

This commit is contained in:
vsavkin 2014-12-16 09:47:01 -08:00
parent 1d03c2af5d
commit dbd85615b0
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import {Element} from 'facade/dom';
export class NgElement {
domElement:Element;
constructor(domElement) {
constructor(domElement:Element) {
this.domElement = domElement;
}
}