/** * Card type * @example [ * { * "name": "Card 1", * "ord": 0, * "qfmt": "{{Front}}", * "afmt": "{{FrontSide}}\n\n
\n\n{{Back}}", * "bafmt": "", * "bqfmt": "" * "did": null, * } * ] * @see https://docs.ankiweb.net/getting-started.html#card-types */ export type CardType = { /** * Card type name */ name: string; /** * The ordinal of the card type */ ord: number; /** * The question format */ qfmt: string; /** * The answer format */ afmt: string; /** * The back format */ bqfmt: string; /** * The back format */ bafmt: string; /** * The deck id */ did: number | null; };