Skip to content

Commit

Permalink
use type
Browse files Browse the repository at this point in the history
  • Loading branch information
ratik21 committed Oct 4, 2023
1 parent db0f570 commit d691719
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/chat/matrix-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { RealtimeChatEvents, IChatClient } from './';
import { mapMatrixMessage } from './matrix/chat-message';
import { ConversationStatus, GroupChannelType, Channel, User as UserModel } from '../../store/channels';
import { MessagesResponse } from '../../store/messages';
import { User as ZeroUser } from '../../store/authentication/types';
import { FileUploadResult } from '../../store/messages/saga';
import { ParentMessage, User } from './types';
import { config } from '../../config';
Expand All @@ -44,7 +45,7 @@ export class MatrixClient implements IChatClient {

private accessToken: string;
private userId: string;
private zeroUsersMap: Map<string, any>;
private zeroUsersMap: Map<string, ZeroUser>;

private connectionResolver: () => void;
private connectionAwaiter: Promise<void>;
Expand Down

0 comments on commit d691719

Please sign in to comment.