7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
|
import { ApplicationCommandDataResolvable } from "discord.js"
|
||
|
|
||
|
export interface RegisterCommandOptions {
|
||
|
guildId?: string
|
||
|
commands: ApplicationCommandDataResolvable[]
|
||
|
}
|