src/elements/windowelement.js
/**
* @file Window Element definition class
* @author Liqueur de Toile <contact@liqueurdetoile.com>
* @license Apache-2.0 {@link https://www.apache.org/licenses/LICENSE-2.0}
*/
import EventifiedElement from 'elements/eventifiedelement';
export default class WindowElement extends EventifiedElement {
constructor(options) {
super();
this.element = this.node = window;
this.length = 0;
}
}