Skip to content

Commit 79db43d

Browse files
authored
Add doc for MdCheckboxChange (#3514)
Add doc for MdButtonToggleChange
1 parent 12c2b61 commit 79db43d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/lib/button-toggle/button-toggle.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ var _uniqueIdCounter = 0;
4040

4141
/** Change event object emitted by MdButtonToggle. */
4242
export class MdButtonToggleChange {
43+
/** The MdButtonToggle that emits the event. */
4344
source: MdButtonToggle;
45+
/** The value assigned to the MdButtonToggle. */
4446
value: any;
4547
}
4648

src/lib/checkbox/checkbox.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ export enum TransitionCheckState {
5454

5555
/** Change event object emitted by MdCheckbox. */
5656
export class MdCheckboxChange {
57+
/** The source MdCheckbox of the event. */
5758
source: MdCheckbox;
59+
/** The new `checked` value of the checkbox. */
5860
checked: boolean;
5961
}
6062

0 commit comments

Comments
 (0)