(id: string)
| 10 | put(id: string, snap: ActionSnapshot, ttlMs?: number): Promise<void>; |
| 11 | get(id: string): Promise<ActionSnapshot | undefined>; |
| 12 | delete(id: string): Promise<void>; |
| 13 | } |
| 14 | /** @deprecated Configure `createBot({ state })` instead. Action snapshots are stored via `StateStore.kv`. */ |
| 15 | export class InMemoryActionStore implements ActionStore { |
no outgoing calls
no test coverage detected