mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-21 19:06:38 -05:00
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
export const TWEET_LENGTH_MAX_LENGTH = 280;
|
|
export const DISCORD_MESSAGE_MAX_LENGTH = 2000;
|
|
|
|
export const USER_BIO_MAX_LENGTH = DISCORD_MESSAGE_MAX_LENGTH;
|
|
export const PlUS_SUGGESTION_FIRST_COMMENT_MAX_LENGTH = 500;
|
|
export const PlUS_SUGGESTION_COMMENT_MAX_LENGTH = TWEET_LENGTH_MAX_LENGTH;
|
|
|
|
export const PLUS_TIERS = [1, 2, 3];
|
|
|
|
export const PLUS_UPVOTE = 1;
|
|
export const PLUS_DOWNVOTE = -1;
|