export class Dimension { width: int; height: int; constructor(width: int, height: int) { this.width = width; this.height = height; } }