Drafting the docs for IMPACT score calculator (IMPACT.md)

This commit is contained in:
2026-03-31 02:04:10 +05:30
parent 5efee3c84f
commit b547063ac7
2 changed files with 20 additions and 1 deletions

View File

@@ -153,7 +153,7 @@ const parameters : Input[] = [
export const IMPACT:Calculator = {
id:"impact-score",
name:"IMPACT (Index for Mortality Prediction After Cardiac Transplantation)",
desc:"IMPACT score is a risk assessment tool used to predict 1-year mortality following a Heart Transplantation based on 12 parameters (including renal function, liver function, age)",
desc:"IMPACT score is a risk assessment tool used to predict 1-year mortality risk following a Heart Transplantation based on 12 parameters (including renal function, liver function, age)",
inputs:parameters,
calc_func:(values : Values):number => {
const age = values.age as number;