9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
import { AutocompleteInteraction } from "discord.js"
|
|
import { ExtendedClient } from "~/utils/Client.js"
|
|
|
|
export interface IAutocomplete {
|
|
name: string
|
|
description: string
|
|
execute: (arg: { interaction: AutocompleteInteraction, client: ExtendedClient }) => Promise<void>
|
|
}
|