/** * DO NOT EDIT * * This file was automatically generated by * https://github.com/Polymer/tools/tree/master/packages/gen-typescript-declarations * * To modify these typings, edit the source file(s): * iron-doc-element.js */ import {Polymer} from '@polymer/polymer/lib/legacy/polymer-fn.js'; import {html} from '@polymer/polymer/lib/utils/html-tag.js'; import {IronDocViewerBehavior} from './iron-doc-viewer-behavior.js'; import {LegacyElementMixin} from '@polymer/polymer/lib/legacy/legacy-element-mixin.js'; /** * `iron-doc-element` renders documentation about a custom element from a JSON * descriptor output by * [Polymer Analyzer](https://github.com/Polymer/polymer-analyzer). */ interface IronDocElementElement extends IronDocViewerBehavior, LegacyElementMixin, HTMLElement { readonly title: any; _superclassUrl(superclass: any): any; _superclassTarget(superclass: any): any; _computeTitle(descriptor: any): any; } export {IronDocElementElement}; declare global { interface HTMLElementTagNameMap { "iron-doc-element": IronDocElementElement; } }