diff options
author | dan <dan.abramov@gmail.com> | 2024-05-08 03:34:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 03:34:35 +0100 |
commit | 814ec2bd7f2fa4506b528da9d8d6f912ddc5422e (patch) | |
tree | 1e0287ce8f224ecf74dad5a274dd1b397a0cd12f /src/state/session/reducer.ts | |
parent | 0910525e2efe124c63c1c8147a98450e43110681 (diff) | |
download | voidsky-814ec2bd7f2fa4506b528da9d8d6f912ddc5422e.tar.zst |
Add session reducer tests (#3860)
Diffstat (limited to 'src/state/session/reducer.ts')
-rw-r--r-- | src/state/session/reducer.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/session/reducer.ts b/src/state/session/reducer.ts index e873f620f..a14cd8e1c 100644 --- a/src/state/session/reducer.ts +++ b/src/state/session/reducer.ts @@ -6,6 +6,7 @@ import {SessionAccount} from './types' // A hack so that the reducer can't read anything from the agent. // From the reducer's point of view, it should be a completely opaque object. type OpaqueBskyAgent = { + readonly service: URL readonly api: unknown readonly app: unknown readonly com: unknown |