-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathmsg.ts
More file actions
35 lines (34 loc) · 1.48 KB
/
msg.ts
File metadata and controls
35 lines (34 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const okHand: string = ':ok_hand:';
const pingPong: string = 'pong. :ping_pong:';
const dontAskToAsk: string = 'https://dontasktoask.com/';
const reactfcMsg: string =
'https://github.com/facebook/create-react-app/pull/8177#issue-353062710';
const onlyRunInHelp: string =
':warning: you can only run this in ongoing help channels.';
const beAskerToCloseChannel: string =
':warning: you have to be the asker to close the channel.';
const couldntFindCodeblock: string = ":warning: couldn't find a codeblock!";
const canRemoveFullLink: string =
"Here's a shortened URL of your playground link! You can remove the full link from your message.";
const syntaxWarning: string = ':warning: syntax: !remind <duration> [message]';
const invalidDuration: string = ':warning: invalid duration!';
const cannotSendRepToYou: string = ':x: you cannot send rep to yourself';
const noRepRemain: string = ':warning: no rep remaining! come back later.';
const needValidSymbol: string =
'You need to give me a valid symbol name to look for!';
const noTypescriptCode: string =
':warning: could not find any TypeScript codeblocks in the past 10 messages';
export { okHand };
export { pingPong };
export { dontAskToAsk };
export { reactfcMsg };
export { onlyRunInHelp };
export { beAskerToCloseChannel };
export { couldntFindCodeblock };
export { canRemoveFullLink };
export { syntaxWarning };
export { invalidDuration };
export { cannotSendRepToYou };
export { noRepRemain };
export { needValidSymbol };
export { noTypescriptCode };