import EntityDefinition from "../model/dataTypes/EntityDefinition"; import Transformer from "./core/Transformer"; import FilePath from "../model/dataTypes/FilePath"; /** * A Transformer that modifies types with no parent to extend our * hand-made FHIR.Type type * * Upon detecting a type with no parent, this transformer will: * - add an import for FHIR.Type * - add FHIR.type as the parent of FHIR.Element */ export default class ModifyRootTypeTransformer extends Transformer { baseDir: FilePath; constructor(baseDir: FilePath); transform(input: EntityDefinition): EntityDefinition; } //# sourceMappingURL=ModifyRootTypeTransformer.d.ts.map