| 11 | } from "@remix-run/server-runtime"; |
| 12 | |
| 13 | interface PartyStorage { |
| 14 | get(id: string): Promise<string | null>; |
| 15 | put( |
| 16 | id: string, |
| 17 | data: string, |
| 18 | options?: { expiration?: number } |
| 19 | ): Promise<void>; |
| 20 | delete(id: string): Promise<void>; |
| 21 | } |
| 22 | |
| 23 | interface PartySessionStorageOptions { |
| 24 | /** |
no outgoing calls
no test coverage detected