Skip to content

Commit

Permalink
add exports of all custom commands
Browse files Browse the repository at this point in the history
  • Loading branch information
d-fischer committed Nov 10, 2020
1 parent d195303 commit e32d5e6
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions packages/twitch-chat-client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ export { ChatClient };

export { TwitchPrivateMessage as PrivateMessage } from './StandardCommands/TwitchPrivateMessage';

export { ClearChat } from './Capabilities/TwitchCommandsCapability/MessageTypes/ClearChat';
export { HostTarget } from './Capabilities/TwitchCommandsCapability/MessageTypes/HostTarget';
export { Reconnect } from './Capabilities/TwitchCommandsCapability/MessageTypes/Reconnect';
export { RoomState } from './Capabilities/TwitchCommandsCapability/MessageTypes/RoomState';
export { UserNotice } from './Capabilities/TwitchCommandsCapability/MessageTypes/UserNotice';
export { UserState } from './Capabilities/TwitchCommandsCapability/MessageTypes/UserState';
export { Whisper } from './Capabilities/TwitchCommandsCapability/MessageTypes/Whisper';

export { ClearMsg } from './Capabilities/TwitchTagsCapability/MessageTypes/ClearMsg';
export { GlobalUserState } from './Capabilities/TwitchTagsCapability/MessageTypes/GlobalUserState';

export {
ChatSubGiftInfo,
ChatSubGiftUpgradeInfo,
Expand All @@ -36,7 +47,9 @@ export { ChatUser } from './ChatUser';
export { LogLevel } from '@d-fischer/logger';

export { toChannelName, toUserName } from './Toolkit/UserTools';
export { ParsedMessagePart } from './Toolkit/EmoteTools';
export { ParsedMessageEmotePart } from './Toolkit/EmoteTools';
export { ParsedMessageCheerPart } from './Toolkit/EmoteTools';
export { ParsedMessageTextPart } from './Toolkit/EmoteTools';
export {
ParsedMessagePart,
ParsedMessageEmotePart,
ParsedMessageCheerPart,
ParsedMessageTextPart
} from './Toolkit/EmoteTools';

0 comments on commit e32d5e6

Please sign in to comment.