UNPKG

ydeck

Version:

Parse, validate, and classify Yu-Gi-Oh! decklists

8 lines (7 loc) 287 B
import { TypedDeck } from "ydke"; export declare class YDKParseError extends Error { readonly message: string; constructor(message: string); } export declare function ydkToTypedDeck(ydk: string): TypedDeck; export declare function typedDeckToYdk(deck: TypedDeck): string;