import {Container} from './../com/pixi.min'; class WebText { soul: any; view: any; isCreated: boolean; W: number; H: number; U: number; s: number; constructor(soul, text, options = {}) { if (soul) { this.soul = soul; this.view = soul.renderer.view; // this.soul.div.appendChild(); } } move(x, y) { // this.x = x; // this.y = y; } update(delta) { } create() { this.isCreated = true; } destroy() { } resize(w, h) { this.W = w; this.H = h; this.U = Math.min(w, h); this.s = this.U / 1000; } } export default WebText;