chore(): more type fixes

This commit is contained in:
Tim Lancina
2016-01-13 16:34:27 -06:00
parent bd69104ac1
commit 3a41dfeb6b
4 changed files with 14 additions and 15 deletions

View File

@@ -29,7 +29,7 @@ import {isDefined} from '../../util/util';
'role': 'radio',
'class': 'item',
'tappable': '',
'tabindex': 0,
'tabindex': '0',
'[attr.aria-disabled]': 'disabled'
},
template:
@@ -44,7 +44,7 @@ import {isDefined} from '../../util/util';
})
export class RadioButton {
@Input() value: string = '';
@Input() public checked: any = false;
@Input() checked: any = false;
@Input() disabled: boolean = false;
@Input() id: string;
@Output() select: EventEmitter<RadioButton> = new EventEmitter();