UNPKG
discord.js-game
Version:
latest (1.2.7-beta)
1.2.7-beta
Discord games is a powerful npm package with a collection of minigames for your discord bot
discord.js-game
/
types
/
Emojify.d.ts
27 lines
(25 loc)
•
272 B
TypeScript
View Raw
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
type
CharsKeys
= |
'0'
|
'1'
|
'2'
|
'3'
|
'4'
|
'5'
|
'6'
|
'7'
|
'8'
|
'9'
|
'#'
|
'*'
|
'?'
|
'!'
|
'+'
|
'-'
|
'×'
|
'$'
|
'/'
|
' '
;
export
const
Emojify
: { (
content
:
string
):
string
;
chars
:
Record
<
CharsKeys
,
string
>; };