11 lines
182 B
TypeScript
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;
|
|
}
|