chore(): fix typescript errors

This commit is contained in:
Adam Bradley
2016-01-12 10:30:23 -06:00
parent 309387bbbf
commit 0942563d5f
3 changed files with 33 additions and 31 deletions

View File

@ -17,6 +17,8 @@ export class TextInput {
@Input() ngModel: any;
@Output() valueChange: EventEmitter<string> = new EventEmitter();
@Output() focusChange: EventEmitter<boolean> = new EventEmitter();
public type: string;
private _relocated: boolean;
constructor(
@Attribute('type') type: string,