Skip to content

Commit

Permalink
Merge pull request #245 from GetStream/fix/send-reaction-types
Browse files Browse the repository at this point in the history
fix types for channel.sendReaction
  • Loading branch information
vishalnarkhede authored Feb 10, 2020
2 parents 600da6c + 2e0452c commit 08c802e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/stream-chat/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ export interface ConnectionChangeEvent {

export interface Reaction {
type: string;
message_id: string;
message_id?: string;
user_id?: string;
user: User;
score: number;
user?: User;
score?: number;
[propName: string]: any;
}

Expand Down

0 comments on commit 08c802e

Please sign in to comment.