Skip to content

Commit

Permalink
feat(fhir-ts-codegen): add xhtml primitive
Browse files Browse the repository at this point in the history
  • Loading branch information
tangdrew committed Feb 21, 2019
1 parent 67b5a29 commit d87f4c7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/fhir-ts-codegen/lib/conformance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ export enum FHIRPrimitives {
unsignedInt = "unsignedInt",
uri = "uri",
url = "url",
uuid = "uuid"
uuid = "uuid",
xhtml = "xhtml"
}

/**
Expand All @@ -47,7 +48,8 @@ export const FHIRPrimitivesTypes: { [index: string]: string } = {
unsignedInt: "UnsignedIntegerType",
uri: "URIType",
url: "URLType",
uuid: "UUIDType"
uuid: "UUIDType",
xhtml: "XHTMLType"
};

export interface StructureDefinition {
Expand Down

0 comments on commit d87f4c7

Please sign in to comment.