@bengo.co/typescript-web-starter
Version:
A simple website project written in TypeScript. Use this as a starting point for your project.
18 lines (17 loc) • 583 B
text/typescript
/**
* Constants used throughout the project.
*/
export const MIN_AGE = 18;
export const MAX_AGE = 95;
export const MIN_COMPATIBILITY_SCORE = 1;
export const MAX_COMPATIBILITY_SCORE = 99;
export const MIN_COMPATIBILITY_SCORE_FLOAT = 0.01;
export const MAX_COMPATIBILITY_SCORE_FLOAT = 0.99;
export const MIN_HEIGHT = 135;
export const MAX_HEIGHT = 210;
export const MIN_DISTANCE = 30;
export const MAX_DISTANCE = 300;
export const HAS_PHOTO_DEFAULT = false;
export const IN_CONTACT_DEFAULT = false;
export const IS_FAVOURITE_DEFAULT = false;
export const MAX_DISTANCE_DEFAULT = 300;