diff --git a/ionic/components/checkbox/checkbox.ts b/ionic/components/checkbox/checkbox.ts index bf380bbef1..b7300d8e64 100644 --- a/ionic/components/checkbox/checkbox.ts +++ b/ionic/components/checkbox/checkbox.ts @@ -28,7 +28,7 @@ import {isTrueProperty} from '../../util/util'; * * * Sausage - * + * * * * @@ -68,6 +68,9 @@ export class Checkbox { */ id: string; + /** + * @private + */ @Input() value: string = ''; constructor( @@ -96,6 +99,9 @@ export class Checkbox { this.checked = !this.checked; } + /** + * @private + */ @Input() get checked() { return this._checked; @@ -109,6 +115,9 @@ export class Checkbox { } } + /** + * @private + */ @Input() get disabled() { return this._disabled;