UNPKG

@j2inn/app

Version:

J2 Innovations core application framework

14 lines (13 loc) 200 B
/** * Width and height dimensions. */ export interface Dimensions { /** * The width in pixels. */ width: number; /** * The height in pixels. */ height: number; }