> For the complete documentation index, see [llms.txt](https://learn.squirrel365.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learn.squirrel365.io/squirrel-addon-documentation/squirrel-helper-library/angular/classes/squirrelsize.md).

# SquirrelSize

```typescript
export class SquirrelSize {
    height: number;
    width: number;

    constructor(width: number, height: number) {
        if (width != null) { this.width = width; }
        if (height != null) { this.height = height; }
    }
}
```
