refactor: add types (#9288)

This commit is contained in:
Victor Berchet
2016-06-17 10:57:32 -07:00
committed by GitHub
parent 8879aa1df4
commit 5e3ccbcea9
14 changed files with 66 additions and 72 deletions

View File

@ -561,7 +561,7 @@ export function main() {
</select>
</div>`;
var fixture: any /** TODO #9100 */;
var fixture: ComponentFixture<MyComp8>;
tcb.overrideTemplate(MyComp8, t)
.createAsync(MyComp8)
.then((compFixture) => fixture = compFixture);
@ -952,7 +952,7 @@ export function main() {
<input type="text" ngControl="login">
</div>`;
var fixture: any /** TODO #9100 */;
var fixture: ComponentFixture<MyComp8>;
tcb.overrideTemplate(MyComp8, t).createAsync(MyComp8).then((root) => fixture = root);
tick();