(
partial: Partial<IncomingCommand> & { command: string },
)
| 298 | void this.sink?.onInteraction(evt); |
| 299 | } |
| 300 | emitCommand( |
| 301 | partial: Partial<IncomingCommand> & { command: string }, |
| 302 | ): Promise<void> | void { |
| 303 | return this.sink?.onCommand({ |
| 304 | text: "", |
| 305 | conversationKey: "c", |
| 306 | replyTarget: {}, |
| 307 | platform: "fake", |
| 308 | ...partial, |
| 309 | }); |
| 310 | } |
| 311 | emitReaction( |
| 312 | partial: Partial<IncomingReaction> & { rawEmoji: string }, |
| 313 | ): Promise<void> | void { |
no test coverage detected