Skip to content

Commit

Permalink
chore: missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jaw0r3k committed May 7, 2023
1 parent 3b6dba2 commit 883edb5
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions typings/rawDataTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,10 @@ import {
ThreadAutoArchiveDuration,
GuildTextChannelType,
ChannelType,
VideoQualityMode,
APIChannelBase,
APIThreadChannel,
APIVoiceChannel,
APIGuildForumChannel
APIGuildForumChannel,
Permissions,
GuildDefaultMessageNotifications,
GuildExplicitContentFilter,
Expand All @@ -101,16 +100,11 @@ import {
} from 'discord-api-types/v9';
import { GuildChannel, Guild, PermissionOverwrites } from '.';
import type {
ApplicationRoleConnectionMetadataTypes,
AutoModerationActionTypes,
AutoModerationRuleEventTypes,
AutoModerationRuleKeywordPresetTypes,
AutoModerationRuleTriggerTypes,
InteractionTypes,
MessageComponentTypes,
ApplicationRoleConnectionMetadataTypes,
SortOrderType,
ForumLayoutType,
} from './enums';

export type RawActivityData = GatewayActivity;
Expand Down Expand Up @@ -372,4 +366,12 @@ export interface APIGuildTextChannel<T extends GuildTextChannelType>
}
export type APITextChannel = APIGuildTextChannel<ChannelType.GuildText>;
export type APINewsChannel = APIGuildTextChannel<ChannelType.GuildNews>;
export declare type APIChannel = APIGroupDMChannel | APIDMChannel | APITextChannel | APINewsChannel | APIVoiceChannel | APIGuildCategoryChannel | APIThreadChannel | APIGuildForumChannel;
export declare type APIChannel =
| APIGroupDMChannel
| APIDMChannel
| APITextChannel
| APINewsChannel
| APIVoiceChannel
| APIGuildCategoryChannel
| APIThreadChannel
| APIGuildForumChannel;

0 comments on commit 883edb5

Please sign in to comment.