UNPKG

481 BTypeScriptView Raw
1// tslint:disable:variable-name Describing an API that's defined elsewhere.
2
3import {ElementMixin} from './lib/mixins/element-mixin.js';
4
5export {html} from './lib/utils/html-tag.js';
6
7export {PolymerElement};
8
9/**
10 * Base class that provides the core API for Polymer's meta-programming
11 * features including template stamping, data-binding, attribute deserialization,
12 * and property change observation.
13 */
14declare class PolymerElement extends
15 ElementMixin(
16 HTMLElement) {
17}