14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
![]() |
import { DominionCard, TYPE_ACTION } from "./types";
|
||
|
|
||
|
export const sampleCard: DominionCard = {
|
||
|
orientation: "card",
|
||
|
title: "Title",
|
||
|
description: "Hello, world.",
|
||
|
types: [TYPE_ACTION],
|
||
|
image: "",
|
||
|
artist: "",
|
||
|
author: "",
|
||
|
version: "",
|
||
|
price: "",
|
||
|
preview: "",
|
||
|
}
|