UNPKG
dexare
Version:
latest (3.0.2)
3.0.2
3.0.1
3.0.0
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.1
2.0.0
1.3.1
1.3.0
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
Modular and extendable Discord bot framework
github.com/Dexare/Dexare
Dexare/Dexare
dexare
/
lib
/
modules
/
commands
/
default
/
load.d.ts
8 lines
(7 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
DexareClient
from
'../../../client'
;
import
DexareCommand
from
'../command'
;
import
CommandContext
from
'../context'
;
export
default
class
LoadCommand
extends
DexareCommand
{
constructor
(
client
:
DexareClient
<
any
>
);
run
(
ctx
:
CommandContext
):
Promise
<
string
>; }