slurpcord
Version:
Simple API wrapper for Discord
54 lines (49 loc) • 1.44 kB
JavaScript
/**
* @typedef {import("./bot.js").Bot} Bot
* @typedef {import("./types/index.js").ActivityTypes} ActivityTypes
* @typedef {import("./types/index.js").ButtonTypes} ButtonTypes
* @typedef {import("./types/index.js").Events} Events
* @typedef {import("./types/index.js").ChannelTypes} ChannelTypes
* @typedef {import("./types/index.js").SlashCommandOptions} SlashCommandOptions
* @typedef {import("./types/index.js").ChannelPermissions} ChannelPermissions
* @typedef {import("./builders/index.js").Button} Button
* @typedef {import("./builders/index.js").ActionRow} ActionRow
* @typedef {import("./builders/index.js").SlashCommand} SlashCommand
* @typedef {import("./builders/index.js").Embed} Embed
* @typedef {import("./builders/index.js").Channel} Channel
* @typedef {import("./builders/index.js").Role} Role
*/
import Bot from "./bot.js";
import {
ActivityTypes,
ButtonTypes,
Events,
ChannelTypes,
SlashCommandOptions,
ChannelPermissions
} from "./types/index.js";
import {
Button,
ActionRow,
SlashCommand,
Embed,
Channel,
Role,
Attachment
} from "./builders/index.js";
export {
Embed,
Bot,
ActivityTypes,
SlashCommand,
ActionRow,
Button,
ButtonTypes,
Events,
ChannelTypes,
SlashCommandOptions,
Channel,
ChannelPermissions,
Role,
Attachment
};