|
2 | 2 |
|
3 | 3 | ### `commands` |
4 | 4 |
|
5 | | -- Type: [`CommandObject[]`](/typedef/CommandObject) |
| 5 | +- Type: [`CommandObject[]`](/docs/typedef/CommandObject) |
6 | 6 |
|
7 | 7 | An array of all the command objects that CommandKit is handling. This includes all the properties and methods that are also set outside of CommandKit's configuration. It does however not include the `run` method since CommandKit handles that internally. |
8 | 8 |
|
9 | 9 | ### `commandsPath` |
10 | 10 |
|
11 | 11 | - Type: `string` | `undefined` |
12 | 12 |
|
13 | | -The path to the commands directory which was set when [instantiating CommandKit](/docs/commandkit-setup). |
| 13 | +The path to the commands directory which was set when [instantiating CommandKit](/guide/commandkit-setup). |
14 | 14 |
|
15 | 15 | ### `eventsPath` |
16 | 16 |
|
17 | 17 | - Type: `string` | `undefined` |
18 | 18 |
|
19 | | -The path to the events directory which was set when [instantiating CommandKit](/docs/commandkit-setup). |
| 19 | +The path to the events directory which was set when [instantiating CommandKit](/guide/commandkit-setup). |
20 | 20 |
|
21 | 21 | ### `validationsPath` |
22 | 22 |
|
23 | 23 | - Type: `string` | `undefined` |
24 | 24 |
|
25 | | -The path to the validations directory which was set when [instantiating CommandKit](/docs/commandkit-setup). |
| 25 | +The path to the validations directory which was set when [instantiating CommandKit](/guide/commandkit-setup). |
26 | 26 |
|
27 | 27 | ### `devUserIds` |
28 | 28 |
|
29 | 29 | - Type: `string[]` |
30 | 30 |
|
31 | | -The array of developer user IDs which was set when [instantiating CommandKit](/docs/commandkit-setup). |
| 31 | +The array of developer user IDs which was set when [instantiating CommandKit](/guide/commandkit-setup). |
32 | 32 |
|
33 | 33 | ### `devGuildIds` |
34 | 34 |
|
35 | 35 | - Type: `string[]` |
36 | 36 |
|
37 | | -The array of development server IDs which was set when [instantiating CommandKit](/docs/commandkit-setup). |
| 37 | +The array of development server IDs which was set when [instantiating CommandKit](/guide/commandkit-setup). |
38 | 38 |
|
39 | 39 | ### `devRoleIds` |
40 | 40 |
|
41 | 41 | - Type: `string[]` |
42 | 42 |
|
43 | | -The array of developer role IDs which was set when [instantiating CommandKit](/docs/commandkit-setup). |
| 43 | +The array of developer role IDs which was set when [instantiating CommandKit](/guide/commandkit-setup). |
44 | 44 |
|
45 | 45 | ### `reloadCommands` |
46 | 46 |
|
47 | | -- Props type: `'dev'` | `'global'` | [`ReloadType`](/enums/ReloadType) (optional) |
| 47 | +- Props type: `'dev'` | `'global'` | [`ReloadType`](/docs/enums/ReloadType) (optional) |
48 | 48 | - Return type: `Promise<void>` |
49 | 49 |
|
50 | | -Reloads application commands. Using "dev" will only reload commands marked with `devOnly`, and using "global" will do the opposite. Not passing in a property will reload both dev and global commands. The reload behaviour depends on [`bulkRegister`](/docs/commandkit-setup#bulkregister-optional). |
| 50 | +Reloads application commands. Using "dev" will only reload commands marked with `devOnly`, and using "global" will do the opposite. Not passing in a property will reload both dev and global commands. The reload behaviour depends on [`bulkRegister`](/guide/commandkit-setup#bulkregister-optional). |
51 | 51 |
|
52 | 52 | ### `reloadEvents` |
53 | 53 |
|
|
0 commit comments