Skip to content

Commit

Permalink
docs: fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
notunderctrl committed Feb 3, 2024
1 parent bb3ad39 commit 219fd84
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/docs/pages/docs/classes/CommandKit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,44 +10,44 @@ An array of all the command objects that CommandKit is handling. This includes a

- Type: `string` | `undefined`

The path to the commands directory which was set when [instantiating CommandKit](/docs/commandkit-setup).
The path to the commands directory which was set when [instantiating CommandKit](/guide/commandkit-setup).

### `eventsPath`

- Type: `string` | `undefined`

The path to the events directory which was set when [instantiating CommandKit](/docs/commandkit-setup).
The path to the events directory which was set when [instantiating CommandKit](/guide/commandkit-setup).

### `validationsPath`

- Type: `string` | `undefined`

The path to the validations directory which was set when [instantiating CommandKit](/docs/commandkit-setup).
The path to the validations directory which was set when [instantiating CommandKit](/guide/commandkit-setup).

### `devUserIds`

- Type: `string[]`

The array of developer user IDs which was set when [instantiating CommandKit](/docs/commandkit-setup).
The array of developer user IDs which was set when [instantiating CommandKit](/guide/commandkit-setup).

### `devGuildIds`

- Type: `string[]`

The array of development server IDs which was set when [instantiating CommandKit](/docs/commandkit-setup).
The array of development server IDs which was set when [instantiating CommandKit](/guide/commandkit-setup).

### `devRoleIds`

- Type: `string[]`

The array of developer role IDs which was set when [instantiating CommandKit](/docs/commandkit-setup).
The array of developer role IDs which was set when [instantiating CommandKit](/guide/commandkit-setup).

### `reloadCommands`

- Props type: `'dev'` | `'global'` | [`ReloadType`](/enums/ReloadType) (optional)
- Props type: `'dev'` | `'global'` | [`ReloadType`](/docs/enums/ReloadType) (optional)
- Return type: `Promise<void>`

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).
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).

### `reloadEvents`

Expand Down

0 comments on commit 219fd84

Please sign in to comment.