Gets whether the option is disabled.
()
| 53 | |
| 54 | /** Gets whether the option is disabled. */ |
| 55 | async isDisabled(): Promise<boolean> { |
| 56 | return (await this.host()).hasClass('mdc-list-item--disabled'); |
| 57 | } |
| 58 | |
| 59 | /** Gets whether the option is selected. */ |
| 60 | async isSelected(): Promise<boolean> { |
no test coverage detected