mirror of
https://github.com/sboulema/mtg-deck.git
synced 2026-07-22 06:50:39 +00:00
15 lines
396 B
TypeScript
15 lines
396 B
TypeScript
export const DEFAULT_SECTION_NAME = "Deck:";
|
|
export const COMMENT_DELIMITER = "#";
|
|
export const SKIP_SECTION_NAMES = ["About", "Name"];
|
|
|
|
export interface Line {
|
|
lineType: "card" | "section" | "error" | "blank" | "comment";
|
|
cardCount?: number;
|
|
globalCount?: number | null;
|
|
cardName?: string;
|
|
cardSet?: string;
|
|
cardNumber?: string;
|
|
comments?: string[];
|
|
errors?: string[];
|
|
text?: string;
|
|
}
|