minesweeper-for-web
Version:
Minesweeper as a WebComponent.
12 lines • 527 B
TypeScript
import { MinesweeperBoard } from '../engine/index.js';
import { FieldTarget, Interaction } from '../types/index.js';
import { MinesweeperEvent } from './minesweeper-event.js';
interface FieldInteractionEventDetail {
target: FieldTarget;
interaction: Interaction;
}
export declare class FieldInteractionEvent extends MinesweeperEvent<FieldInteractionEventDetail> {
constructor(board: MinesweeperBoard, target: FieldTarget, interaction: Interaction);
}
export {};
//# sourceMappingURL=field-interaction-event.d.ts.map