Skip to content

Commit

Permalink
ts
Browse files Browse the repository at this point in the history
  • Loading branch information
KevLehman committed Aug 7, 2024
1 parent 4b89f8a commit e92f49a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/test-data/bridges/messageBridge.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { IMessage } from '../../../src/definition/messages';
import type { IMessage, Reaction } from '../../../src/definition/messages';
import type { IRoom } from '../../../src/definition/rooms';
import type { IUser } from '../../../src/definition/users';
import { MessageBridge } from '../../../src/server/bridges';
Expand Down Expand Up @@ -32,4 +32,12 @@ export class TestsMessageBridge extends MessageBridge {
public typing(options: ITypingDescriptor): Promise<void> {
throw new Error('Method not implemented.');
}

public addReaction(_messageId: string, _userId: string, _reaction: Reaction): Promise<void> {
throw new Error('Method not implemented.');
}

public removeReaction(_messageId: string, _userId: string, _reaction: Reaction): Promise<void> {
throw new Error('Method not implemented.');
}
}

0 comments on commit e92f49a

Please sign in to comment.