/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Specifies the size of a color cell. * * The possible values are: * * (Default) `number = 24` * * `{ width: number, height: number }` */ export type TileSize = { width: number; height: number; };