* Returns the root node for this ampdoc. It will either be a `Document` for * the single-doc runtime mode, or a `ShadowRoot` for shadow-doc mode. This * node can be used, among other things, to add ampdoc-wide event listeners. * * @return {!Document|!ShadowRoot}
()
| 464 | * @return {!Document|!ShadowRoot} |
| 465 | */ |
| 466 | getRootNode() { |
| 467 | return /** @type {?} */ (devAssert(null, 'not implemented')); |
| 468 | } |
| 469 | |
| 470 | /** |
| 471 | * Returns the head node. It's either an element or a shadow root. |
no test coverage detected