@claudebernard/fhir-prescription-mocks 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +16 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +2914 -0
- package/dist/index.mjs +2876 -0
- package/package.json +26 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Bundle } from 'fhir/r5';
|
|
2
|
+
|
|
3
|
+
declare const patientMinimal: Bundle;
|
|
4
|
+
declare const patientComplete: Bundle;
|
|
5
|
+
declare const patientMultipleConditions: Bundle;
|
|
6
|
+
declare const patientPediatric: Bundle;
|
|
7
|
+
declare const patientRenalCreatinineClearance: Bundle;
|
|
8
|
+
declare const patientRenalGfrAbsolute: Bundle;
|
|
9
|
+
declare const patientRenalGfrNormalized: Bundle;
|
|
10
|
+
declare const prescriptionComplete: Bundle;
|
|
11
|
+
declare const prescriptionWithAlternative: Bundle;
|
|
12
|
+
declare const prescriptionSingleMedication: Bundle;
|
|
13
|
+
declare const prescriptionWithDocumentReference: Bundle;
|
|
14
|
+
declare const prescriptionPosology: Bundle;
|
|
15
|
+
|
|
16
|
+
export { patientComplete, patientMinimal, patientMultipleConditions, patientPediatric, patientRenalCreatinineClearance, patientRenalGfrAbsolute, patientRenalGfrNormalized, prescriptionComplete, prescriptionPosology, prescriptionSingleMedication, prescriptionWithAlternative, prescriptionWithDocumentReference };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Bundle } from 'fhir/r5';
|
|
2
|
+
|
|
3
|
+
declare const patientMinimal: Bundle;
|
|
4
|
+
declare const patientComplete: Bundle;
|
|
5
|
+
declare const patientMultipleConditions: Bundle;
|
|
6
|
+
declare const patientPediatric: Bundle;
|
|
7
|
+
declare const patientRenalCreatinineClearance: Bundle;
|
|
8
|
+
declare const patientRenalGfrAbsolute: Bundle;
|
|
9
|
+
declare const patientRenalGfrNormalized: Bundle;
|
|
10
|
+
declare const prescriptionComplete: Bundle;
|
|
11
|
+
declare const prescriptionWithAlternative: Bundle;
|
|
12
|
+
declare const prescriptionSingleMedication: Bundle;
|
|
13
|
+
declare const prescriptionWithDocumentReference: Bundle;
|
|
14
|
+
declare const prescriptionPosology: Bundle;
|
|
15
|
+
|
|
16
|
+
export { patientComplete, patientMinimal, patientMultipleConditions, patientPediatric, patientRenalCreatinineClearance, patientRenalGfrAbsolute, patientRenalGfrNormalized, prescriptionComplete, prescriptionPosology, prescriptionSingleMedication, prescriptionWithAlternative, prescriptionWithDocumentReference };
|