@scryfall/api-types
Version:
Type definitions for the Scryfall API
15 lines (12 loc) • 398 B
text/typescript
import { Uri } from "../../../internal";
/**
* Possible purchase URIs for a card.
*/
export type ScryfallPurchaseUris = {
/** This card's purchase page on TCGPlayer. */
tcgplayer: Uri;
/** This card's purchase page on Cardmarket. Often inexact due to how Cardmarket links work. */
cardmarket: Uri;
/** This card's purchase page on Cardhoarder. */
cardhoarder: Uri;
};