| 10 | } |
| 11 | |
| 12 | interface KVNamespace { |
| 13 | get(key: string): Promise<string | null>; |
| 14 | put(key: string, value: string, options?: { expirationTtl?: number }): Promise<void>; |
| 15 | } |
| 16 | |
| 17 | interface DeviceInfo { |
| 18 | platform?: string; |
no outgoing calls
no test coverage detected