import Predicate from "./core/Predicate"; import EntityDefinition from "../model/dataTypes/EntityDefinition"; /** * This predicate looks for types that should have extended FHIR.code * in the modelinfo.xml file. A future fix to the modelinfo.xml * should make this predicate unnecessary. * * The criteria is any EntityDefinition that: * - extends FHIR.Element * - has a single MemberVariable named "value" of type System.string */ export default class InlineValueSetTypePredicate implements Predicate { evaluate(input: EntityDefinition): boolean; } //# sourceMappingURL=InlineValueSetTypePredicate.d.ts.map