fix deploy

This commit is contained in:
DjDeveloperr 2021-04-25 15:17:37 +05:30
parent 381cb13e6c
commit 45bfbff3a3
1 changed files with 16 additions and 2 deletions

View File

@ -1,10 +1,14 @@
import { Interaction } from './mod.ts'
import { import {
SlashCommandsManager, SlashCommandsManager,
SlashClient, SlashClient,
SlashCommandHandlerCallback, SlashCommandHandlerCallback,
SlashCommandHandler SlashCommandHandler
} from './src/interactions/mod.ts' } from './src/interactions/mod.ts'
import { InteractionResponseType, InteractionType } from './src/types/slash.ts' import {
InteractionResponseType,
InteractionType
} from './src/types/interactions.ts'
export interface DeploySlashInitOptions { export interface DeploySlashInitOptions {
env?: boolean env?: boolean
@ -124,8 +128,18 @@ export function handle(
client.handle(cmd, handler) client.handle(cmd, handler)
} }
export function interactions(cb: (i: Interaction) => any): void {
client.on('interaction', cb)
}
export { commands, client } export { commands, client }
export * from './src/types/slash.ts' export * from './src/types/slashCommands.ts'
export * from './src/types/interactions.ts'
export * from './src/structures/slash.ts' export * from './src/structures/slash.ts'
export * from './src/interactions/mod.ts' export * from './src/interactions/mod.ts'
export * from './src/types/channel.ts' export * from './src/types/channel.ts'
export * from './src/types/messageComponents.ts'
export * from './src/structures/interactions.ts'
export * from './src/structures/messageComponents.ts'
export * from './src/structures/message.ts'
export * from './src/structures/embed.ts'