(dir: string | undefined, sessionID?: string)
| 28 | |
| 29 | export const SessionRouteKey = { |
| 30 | fromRoute(dir: string | undefined, sessionID?: string) { |
| 31 | return fragment("Session route", `${dir ?? ""}${sessionID ? "/" + sessionID : ""}`) as SessionRouteKey |
| 32 | }, |
| 33 | fromLegacy(key: string) { |
| 34 | return fragment("Legacy session route", key) as SessionRouteKey |
| 35 | }, |
nothing calls this directly
no test coverage detected