(key: ServerConnection.Key, canonicalLocalServer?: ServerConnection.Key)
| 19 | export const ServerScope = { |
| 20 | local: "local" as ServerScope, |
| 21 | fromServerKey(key: ServerConnection.Key, canonicalLocalServer?: ServerConnection.Key) { |
| 22 | return fragment( |
| 23 | "Server scope", |
| 24 | key === "sidecar" || key === canonicalLocalServer ? ServerScope.local : key, |
| 25 | ) as ServerScope |
| 26 | }, |
| 27 | } |
| 28 | |
| 29 | export const SessionRouteKey = { |
nothing calls this directly
no test coverage detected