mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
fix src bug on mod.ts
This commit is contained in:
@@ -1,39 +1,39 @@
|
||||
import createClient from "./module/client.ts";
|
||||
import createClient from "./src/module/client.ts";
|
||||
|
||||
export * from "./module/client.ts";
|
||||
export * from "./module/requestManager.ts";
|
||||
export * from "./module/shardingManager.ts";
|
||||
export * from "./src/module/client.ts";
|
||||
export * from "./src/module/requestManager.ts";
|
||||
export * from "./src/module/shardingManager.ts";
|
||||
|
||||
export * from "./structures/channel.ts";
|
||||
export * from "./structures/guild.ts";
|
||||
export * from "./structures/member.ts";
|
||||
export * from "./structures/message.ts";
|
||||
export * from "./structures/role.ts";
|
||||
export * from "./src/structures/channel.ts";
|
||||
export * from "./src/structures/guild.ts";
|
||||
export * from "./src/structures/member.ts";
|
||||
export * from "./src/structures/message.ts";
|
||||
export * from "./src/structures/role.ts";
|
||||
|
||||
export * from "./handlers/channel.ts";
|
||||
export * from "./handlers/guild.ts";
|
||||
export * from "./handlers/member.ts";
|
||||
export * from "./handlers/message.ts";
|
||||
export * from "./src/handlers/channel.ts";
|
||||
export * from "./src/handlers/guild.ts";
|
||||
export * from "./src/handlers/member.ts";
|
||||
export * from "./src/handlers/message.ts";
|
||||
|
||||
export * from "./types/activity.ts";
|
||||
export * from "./types/cdn.ts";
|
||||
export * from "./types/channel.ts";
|
||||
export * from "./types/discord.ts";
|
||||
export * from "./types/errors.ts";
|
||||
export * from "./types/fetch.ts";
|
||||
export * from "./types/guild.ts";
|
||||
export * from "./types/member.ts";
|
||||
export * from "./types/message.ts";
|
||||
export * from "./types/options.ts";
|
||||
export * from "./types/permission.ts";
|
||||
export * from "./types/presence.ts";
|
||||
export * from "./types/role.ts";
|
||||
export * from "./src/types/activity.ts";
|
||||
export * from "./src/types/cdn.ts";
|
||||
export * from "./src/types/channel.ts";
|
||||
export * from "./src/types/discord.ts";
|
||||
export * from "./src/types/errors.ts";
|
||||
export * from "./src/types/fetch.ts";
|
||||
export * from "./src/types/guild.ts";
|
||||
export * from "./src/types/member.ts";
|
||||
export * from "./src/types/message.ts";
|
||||
export * from "./src/types/options.ts";
|
||||
export * from "./src/types/permission.ts";
|
||||
export * from "./src/types/presence.ts";
|
||||
export * from "./src/types/role.ts";
|
||||
|
||||
export * from "./utils/cache.ts";
|
||||
export * from "./utils/cdn.ts";
|
||||
export * from "./utils/collection.ts";
|
||||
export * from "./utils/logger.ts";
|
||||
export * from "./utils/permissions.ts";
|
||||
export * from "./utils/utils.ts";
|
||||
export * from "./src/utils/cache.ts";
|
||||
export * from "./src/utils/cdn.ts";
|
||||
export * from "./src/utils/collection.ts";
|
||||
export * from "./src/utils/logger.ts";
|
||||
export * from "./src/utils/permissions.ts";
|
||||
export * from "./src/utils/utils.ts";
|
||||
|
||||
export default createClient;
|
||||
|
||||
+2
-2
@@ -446,7 +446,7 @@ export enum AuditLogs {
|
||||
INTEGRATION_DELETE,
|
||||
}
|
||||
|
||||
export type ChannelType =
|
||||
export type ChannelTypeText =
|
||||
| "text"
|
||||
| "dm"
|
||||
| "news"
|
||||
@@ -482,7 +482,7 @@ export interface RawOverwrite {
|
||||
|
||||
export interface ChannelCreateOptions {
|
||||
/** The type of the channel */
|
||||
type?: ChannelType;
|
||||
type?: ChannelTypeText;
|
||||
/** The channel topic. (0-1024 characters) */
|
||||
topic?: string;
|
||||
/** The bitrate(in bits) of the voice channel. */
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { ChannelType, UserPayload } from "./guild.ts";
|
||||
import { UserPayload } from "./guild.ts";
|
||||
import { MemberCreatePayload } from "./member.ts";
|
||||
import { Channel } from "../structures/channel.ts";
|
||||
import { ChannelType } from "./channel.ts";
|
||||
|
||||
export interface MentionedUser extends UserPayload {
|
||||
member: MemberCreatePayload;
|
||||
|
||||
Reference in New Issue
Block a user