import { CodeStub } from './CodeStub.mjs'; /** * * * Interface for entities that can be classified using tags from codification systems such as * LOINC. * Tags qualify an entity as belonging to a certain class regardless of its value. */ export interface HasTags { tags: Array; }