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