Skip to content

Commit

Permalink
chore: thread and thread manager into separate file (#1336)
Browse files Browse the repository at this point in the history
  • Loading branch information
myandrienko authored Aug 14, 2024
1 parent bfd5ed5 commit 6c50a9e
Show file tree
Hide file tree
Showing 4 changed files with 343 additions and 343 deletions.
3 changes: 2 additions & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,9 @@ import {
QueryMessageHistoryResponse,
} from './types';
import { InsightMetrics, postInsights } from './insights';
import { Thread, ThreadManager } from './thread';
import { Thread } from './thread';
import { Moderation } from './moderation';
import { ThreadManager } from './thread_manager';

function isString(x: unknown): x is string {
return typeof x === 'string' || x instanceof String;
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export * from './client_state';
export * from './channel';
export * from './channel_state';
export * from './thread';
export * from './thread_manager';
export * from './connection';
export * from './events';
export * from './moderation';
Expand Down
Loading

0 comments on commit 6c50a9e

Please sign in to comment.