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