From 9c7689fecbe76bc4e37c0cbec1b557edb3ed8629 Mon Sep 17 00:00:00 2001 From: rshig <90143161+rshigg@users.noreply.github.com> Date: Sun, 21 Jan 2024 15:32:52 -0330 Subject: [PATCH] fix type import in utils.ts --- src/channels/minesweeper/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;