/* * Copyright (C) 2023 Klaus Reimer * See LICENSE.md for licensing information. */ /** A size with width and height component. */ export interface Size { /** The width */ w: number; /** The height */ h: number; }