UNPKG
erium
Version:
latest (1.0.4-bugfixes)
1.0.4
1.0.4-bugfixes
1.0.3
1.0.3-fix2
1.0.3-fix
1.0.2
1.0.2-fix
0.0.1
Erium is Discord Bot Library made in typescript
github.com/NotSkieslol/Erium
NotSkieslol/Erium
erium
/
src
/
events
/
MESSAGE_CREATE_EVENT.ts
8 lines
(6 loc)
•
216 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
Client
from
"../structures/Client"
;
import
{
EventTypes
}
from
"../types/Events"
;
export
default
function
(
client
:
Client
,
payload
:
any
) {
const
type
:
EventTypes
=
"messageCreate"
client.
emit
(
type
); }