14 lines
237 B
TypeScript
14 lines
237 B
TypeScript
/**
|
|
* The size of a container.
|
|
*/
|
|
export interface ElementSize {
|
|
/**
|
|
* The height of a container or HTMLElement.
|
|
*/
|
|
height: number;
|
|
/**
|
|
* The width of a container or HTMLElement.
|
|
*/
|
|
width: number;
|
|
}
|