import { FlashcardType } from "./FlashcardType"; import { Text } from "./Text"; import { IAnnotation } from "./IAnnotation"; export interface IFlashcard extends IAnnotation { type: FlashcardType; fields: { [key: string]: Text; }; archetype: string; }