/**
 * @name QualityType
 * @description Type for quality report.
 * @description indel | snp | unknown
 * @see <a href="https://hl7.org/fhir/R4/valueset-quality-type.html">QualityType</a>
 * @version R4
 * @author Claudia Alarcón Lazo
 */
export type QualityTypeType = 'indel' | 'snp' | 'unknown';
