(
baseUrl: string,
token?: string,
query?: { keyword?: string; limit?: number; cursor?: string }
)
| 549 | } |
| 550 | |
| 551 | async function fetchRemoteSessions( |
| 552 | baseUrl: string, |
| 553 | token?: string, |
| 554 | query?: { keyword?: string; limit?: number; cursor?: string } |
| 555 | ): Promise<RemoteSessionDiscoveryResult> { |
| 556 | return transport.fetchRemoteSessions(baseUrl, token, query) |
| 557 | } |
| 558 | |
| 559 | return { |
| 560 | config, |
nothing calls this directly
no test coverage detected