UNPKG

@typed-tabletop-simulator/lib

Version:
16 lines (15 loc) 305 B
/** @noSelfInFile */ import { GameGrid } from "./gameGrid"; export interface AxialCoordinate { q: number; r: number; } export interface OffsetCoordinate { q: number; r: number; } export interface Point { x: number; y: number; } export declare const getCurrentGrid: () => GameGrid;