Skip to content

Variable: STANDARD_AGES ​

ts
const STANDARD_AGES: {
  ADULT: "Adult (18-64)";
  CHILD: "Child (birth to 17)";
  OLDER_ADULT: "Older Adult (65+)";
};

Defined in: clinical-trials/types.ts:459

Standard age groups (3 values).

Type Declaration ​

ADULT ​

ts
readonly ADULT: "Adult (18-64)" = "Adult (18-64)";

CHILD ​

ts
readonly CHILD: "Child (birth to 17)" = "Child (birth to 17)";

OLDER_ADULT ​

ts
readonly OLDER_ADULT: "Older Adult (65+)" = "Older Adult (65+)";

Released under the MIT License.