UNPKG

@notatki/preview

Version:

A collection of tools for creating and syncing Anki notes from simple text files.

13 lines 449 B
import { type Model, type ModelCard, type Note } from "@notatki/core"; export declare class CardData { #private; constructor(model: Model, card: ModelCard, note: Note); get model(): Model; get card(): ModelCard; get note(): Note; hasValue(name: string): boolean; getValue(name: string): string; clearValue(name: string): void; setValue(name: string, value: string): void; } //# sourceMappingURL=card-data.d.ts.map