7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
import {CardKey} from './cards/cards'
|
|
|
|
export interface CardInstance {
|
|
key: CardKey
|
|
// other relevant modifiers to show user
|
|
}
|