Rename files

This commit is contained in:
2023-06-21 17:56:43 +01:00
parent 7ec602cc16
commit a61e17c93b
11 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,16 @@
/**
* Websocket re-connect timeout
*/
export const DefaultConnectTimeout = 2000;
/**
* Hashtag regex
*/
// eslint-disable-next-line no-useless-escape
export const HashtagRegex = /(#[^\s!@#$%^&*()=+.\/,\[{\]};:'"?><]+)/g;
/**
* How long profile cache should be considered valid for
*/
export const ProfileCacheExpire = 1_000 * 60 * 60 * 6;