/** * 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-function.js */ import {Polymer} from '@polymer/polymer/lib/legacy/polymer-fn.js'; import {html} from '@polymer/polymer/lib/utils/html-tag.js'; import {LegacyElementMixin} from '@polymer/polymer/lib/legacy/legacy-element-mixin.js'; /** * Renders documentation describing a function or method. */ interface IronDocFunctionElement extends LegacyElementMixin, HTMLElement { anchorId: string|null|undefined; static: boolean|null|undefined; readonly _privacy: string|null|undefined; readonly _showParamList: boolean|null|undefined; addImportPath: boolean|null|undefined; _computePrivacy(descriptor: any): any; _computeShowParamList(descriptor: any): any; } export {IronDocFunctionElement}; declare global { interface HTMLElementTagNameMap { "iron-doc-function": IronDocFunctionElement; } }