/** * Validation Types * * Types for QTI XML validation resources. */ /** * Single validation result. * * When the entity exists, the response includes `xmlContent` and `validationErrors`. * When the entity is not found (batch only), the response includes `error` instead. */ export interface ValidationResult { success: boolean; entityId: string; xmlContent?: string; validationErrors?: string[]; message: string; error?: string; } /** * Batch validation result. */ export interface BatchValidationResult { results: ValidationResult[]; } //# sourceMappingURL=validate.d.ts.map