forked from Manion-sebastian/waggroup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypingIan.d.ts
47 lines (39 loc) · 828 Bytes
/
typingIan.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import React from "react"
export interface AboutUs {
name: string
url: string
blurb: string
github: string
linkedin: string
portfolio: string
}
export interface MSBoard {
tiles: MSTile[][]
width: number
height: number
mines: number
handleClick(row: number, col: number): (...args: any[]) => void
}
export interface Difficulty extends MSBoard {
preset: number
name: string
}
export interface MSTile {
value: TileValue
state: TileState
}
export interface MSTileButton extends MSTile {
row: number
col: number
handleClick(row: number, col: number): (...args: any[]) => void
}
export interface MSTimer {
time: number
}
export interface MSMines {
mines: number
}
export interface MSGameButton {
gameState: string
handleClick(e: React.MouseEvent<HTMLDivElement, MouseEvent>): void
}