(channelId: string)
| 102 | } |
| 103 | |
| 104 | forward(channelId: string) { |
| 105 | return createMessage(channelId, { |
| 106 | forward: { |
| 107 | channelId: this.channelId, |
| 108 | messageId: this.id |
| 109 | } |
| 110 | }); |
| 111 | } |
| 112 | |
| 113 | createThread(fields: Omit<ICreateThreadFromMessage, "messageId" | "channelId">) { |
| 114 | return createThreadFromMessage({ |
no test coverage detected