UNPKG

pixi.js

Version:

PixiJS — The HTML5 Creation Engine =============

11 lines (10 loc) 182 B
/** * Defines a size with a width and a height. * @memberof maths */ export interface Size { /** The width. */ width: number; /** The height. */ height: number; }