( baseUrl: string, token: string, req: Omit<SendTypingReq, 'base_info'>, )
| 135 | } |
| 136 | |
| 137 | export async function sendTyping( |
| 138 | baseUrl: string, |
| 139 | token: string, |
| 140 | req: Omit<SendTypingReq, 'base_info'>, |
| 141 | ): Promise<SendTypingResp> { |
| 142 | return post<SendTypingResp>( |
| 143 | baseUrl, |
| 144 | '/ilink/bot/sendtyping', |
| 145 | { ...req, base_info: baseInfo() }, |
| 146 | token, |
| 147 | ) |
| 148 | } |
no test coverage detected