UNPKG
deckbuilder
Version:
latest (1.1.2)
1.1.2
1.1.0
1.0.4
1.0.0
0.1.3
0.1.2
0.1.0
A deck building and management tool any card based games in the browser or Node.
deckbuilder
/
src
/
interfaces
/
Card.ts
14 lines
(10 loc)
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
/** * Defines the properties that a card has. */
export
default
interface
Card
{
// The id of the card.
id
:
string
;
// Any other properties that suit your needs.
[
props
:
string
]:
any
; }