( _sessionId: string, _title: string, _options?: SessionMutationOptions, )
| 230 | * @param options - `{ dir?: string }` project path; omit to search all projects |
| 231 | */ |
| 232 | export async function renameSession( |
| 233 | _sessionId: string, |
| 234 | _title: string, |
| 235 | _options?: SessionMutationOptions, |
| 236 | ): Promise<void> { |
| 237 | throw new Error('renameSession is not implemented in the SDK') |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Tag a session. Pass null to clear the tag. |
nothing calls this directly
no outgoing calls
no test coverage detected