@hedia/types 3.0.0-alpha.2 → 3.0.0-alpha.3
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.
|
@@ -45,9 +45,9 @@ const CONSTANTS = exports.CONSTANTS = {
|
|
|
45
45
|
ACTIVITY_TARGET_GLUCOSE_MIN: 4.995,
|
|
46
46
|
/** The maximum valid activity glucose target in mmol/L. (13.9 mmol/L) */
|
|
47
47
|
ACTIVITY_TARGET_GLUCOSE_MAX: 13.9,
|
|
48
|
-
/** The conversion factor to multiply a blood glucose value with to go from
|
|
48
|
+
/** The conversion factor to multiply a blood glucose value with to go from mmol/L to mg/dL. (18.0156) */
|
|
49
49
|
MGDL_PER_MMOLL_BGL: 18.0156,
|
|
50
|
-
/** The conversion factor to multiply a blood glucose value with to go from
|
|
50
|
+
/** The conversion factor to multiply a blood glucose value with to go from mg/dL to mmol/L. (0.055507449099669176) */
|
|
51
51
|
MMOLL_PER_MGDL_BGL: 0.055507449099669176,
|
|
52
52
|
/** The maximum glucose value for providing the severe hyperglycemia attention message in mmol/L. (33.3 mmol/L) */
|
|
53
53
|
SEVERE_HYPERGLYCEMIA_MAX: 33.30449,
|
|
@@ -41,9 +41,9 @@ export declare const CONSTANTS: {
|
|
|
41
41
|
ACTIVITY_TARGET_GLUCOSE_MIN: number;
|
|
42
42
|
/** The maximum valid activity glucose target in mmol/L. (13.9 mmol/L) */
|
|
43
43
|
ACTIVITY_TARGET_GLUCOSE_MAX: number;
|
|
44
|
-
/** The conversion factor to multiply a blood glucose value with to go from
|
|
44
|
+
/** The conversion factor to multiply a blood glucose value with to go from mmol/L to mg/dL. (18.0156) */
|
|
45
45
|
MGDL_PER_MMOLL_BGL: number;
|
|
46
|
-
/** The conversion factor to multiply a blood glucose value with to go from
|
|
46
|
+
/** The conversion factor to multiply a blood glucose value with to go from mg/dL to mmol/L. (0.055507449099669176) */
|
|
47
47
|
MMOLL_PER_MGDL_BGL: number;
|
|
48
48
|
/** The maximum glucose value for providing the severe hyperglycemia attention message in mmol/L. (33.3 mmol/L) */
|
|
49
49
|
SEVERE_HYPERGLYCEMIA_MAX: number;
|
package/package.json
CHANGED