(scope: ServerScope, dir: string, id: string)
| 28 | const handoff = new Map<string, State>() |
| 29 | |
| 30 | const handoffKey = (scope: ServerScope, dir: string, id: string) => ScopedKey.from(scope, dir, id) |
| 31 | |
| 32 | const migrate = (value: unknown) => { |
| 33 | if (!value || typeof value !== "object") return { session: {} } |