(cursor?: string)
| 1168 | }; |
| 1169 | |
| 1170 | const listTasks = async (cursor?: string) => { |
| 1171 | return makeRequest( |
| 1172 | { |
| 1173 | method: "tasks/list", |
| 1174 | params: { cursor }, |
| 1175 | }, |
| 1176 | ListTasksResultSchema, |
| 1177 | ); |
| 1178 | }; |
| 1179 | |
| 1180 | const disconnect = async () => { |
| 1181 | // Clear any receiver-side tasks + cleanup timers |
no test coverage detected