Files
nothoughts/node_modules/pixi.js/lib/maths/misc/Size.d.ts
2025-08-04 18:57:35 +02:00

11 lines
182 B
TypeScript

/**
* Defines a size with a width and a height.
* @memberof maths
*/
export interface Size {
/** The width. */
width: number;
/** The height. */
height: number;
}