/** * Stimuli Types * * Types for QTI stimulus resources. */ import type { CatalogInfo, Stylesheet } from './base'; /** * Stimulus entity. */ export interface Stimulus { identifier: string; title: string; label?: string; language?: string; stylesheet?: Stylesheet; catalogInfo: CatalogInfo[]; toolName?: string; toolVersion?: string; metadata?: Record; /** Raw QTI XML string */ rawXml: string; /** * Parsed XML→JSON content. * Structure varies. */ content: Record; createdAt: string; updatedAt: string; __v?: number; } //# sourceMappingURL=stimuli.d.ts.map