import Transformer from "./core/Transformer"; import EntityDefinition from "../model/dataTypes/EntityDefinition"; import FilePath from "../model/dataTypes/FilePath"; /** * This transformer addresses a bug in the modelinfo.xml file. * ValueSet types, which should have extended FHIR.code, do not. * This transformer modifies them appropriately. */ export default class InlineValueSetTypeTransformer implements Transformer { baseDir: FilePath; constructor(baseDir: FilePath); transform(input: EntityDefinition): EntityDefinition; } //# sourceMappingURL=InlineValueSetTypeTransformer.d.ts.map