import { CodeStub } from './CodeStub.mjs'; /** * * * Interface for entities that can be qualified with codes from codification systems such as * SNOMED-CT, ICPC-2, or ICD-10. */ export interface HasCodes { codes: Array; }