UNPKG
vue-card-memory-game
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A memory game component built with Vue and Tailwind CSS
vue-card-memory-game
/
src
/
lib
/
types.ts
9 lines
(8 loc)
•
183 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
type
GridSize
=
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
;
export
type
Card
= {
id
:
number
;
value
:
string
;
isOpen
:
boolean
;
isMatched
:
boolean
;
content
:
string
; }