const QUEBEC_TAXES_RATE = 0.14975 const EMAIL_COMMUNICATION_PARSE_FROM_EMAIL = 'communication@parse.usewalter.com' const EMAIL_COMMUNICATION_WALTER_FROM_EMAIL = 'info@usewalter.com' const EMAIL_COMMUNICATION_WALTER_FROM_NAME = 'Walter' const DEFAULT_AVATAR = 'https://res.cloudinary.com/din7dm84v/image/upload/v1548730317/icons/avatar.png' const EMAIL_DEFAULT_HEADER_IMAGE = 'https://res.cloudinary.com/din7dm84v/image/upload/v1551410834/janitor/logo/emailDefaultHeader.png' const WALTER_LOGO_BLACK = 'https://res.cloudinary.com/din7dm84v/image/upload/v1537151652/janitor/other/Icon-512.png' const SUPPORT_PHONE_NUMBER = '(438) 700-1558' type GeneralConstantsType = { QUEBEC_TAXES_RATE: number EMAIL_COMMUNICATION_WALTER_FROM_EMAIL: string EMAIL_COMMUNICATION_WALTER_FROM_NAME: string EMAIL_COMMUNICATION_PARSE_FROM_EMAIL: string DEFAULT_AVATAR: string EMAIL_DEFAULT_HEADER_IMAGE: string WALTER_LOGO_BLACK: string SUPPORT_PHONE_NUMBER: string } const generalConstants: GeneralConstantsType = { EMAIL_COMMUNICATION_WALTER_FROM_EMAIL, EMAIL_COMMUNICATION_WALTER_FROM_NAME, EMAIL_COMMUNICATION_PARSE_FROM_EMAIL, QUEBEC_TAXES_RATE, DEFAULT_AVATAR, EMAIL_DEFAULT_HEADER_IMAGE, WALTER_LOGO_BLACK, SUPPORT_PHONE_NUMBER, } export default generalConstants