UNPKG

anki-apkg-generator

Version:
14 lines (13 loc) 358 B
import type Db from './database'; export interface Template { name: string; qfmt: string; afmt: string; } export default class Card { css: string; templates: Template[]; setCss(css?: string): this; setTemplates(templates?: Template[]): this; writeToDatabase(db: Db, deckId: number, noteId: number, timestamp: number): void; }