Skip to content

Commit

Permalink
fix type import in utils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rshigg authored and VodBox committed Mar 3, 2024
1 parent 3e88cf6 commit 9c7689f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/channels/minesweeper/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { TileData } from './Tile';
import {
REVEAL_DONATION_CAP,
GRID_COLUMNS,
Expand All @@ -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;
Expand Down

0 comments on commit 9c7689f

Please sign in to comment.