diff --git a/src/channels/minesweeper/utils.ts b/src/channels/minesweeper/utils.ts index 36bae3d..525e12c 100644 --- a/src/channels/minesweeper/utils.ts +++ b/src/channels/minesweeper/utils.ts @@ -1,4 +1,3 @@ -import { TileData } from './Tile'; import { REVEAL_DONATION_CAP, GRID_COLUMNS, @@ -8,6 +7,7 @@ import { MIN_REVEALED_TILES, mineNumberTiles, } from './constants'; +import type { TileData } from './types'; export function random(min: number, max: number) { return Math.floor(Math.random() * (max - min)) + min;