* Whether the element has been upgraded yet. Always returns false when * the element has not yet been added to DOM. After the element has been * added to DOM, the value depends on the `BaseElement` implementation and * its `upgradeElement` callback. * @return {boolean} * @fi
()
| 345 | * @final |
| 346 | */ |
| 347 | isUpgraded() { |
| 348 | return this.upgradeState_ == UpgradeState_Enum.UPGRADED; |
| 349 | } |
| 350 | |
| 351 | /** @return {!Promise} */ |
| 352 | whenUpgraded() { |
no outgoing calls
no test coverage detected