| 1 | import type { QueryClient } from '@tanstack/react-query' |
| 2 | |
| 3 | export interface ServerSummary { |
| 4 | capabilities: number |
| 5 | id: string |
| 6 | lastSeen: number | null |
| 7 | name: string |
| 8 | online: boolean |
| 9 | } |
| 10 | |
| 11 | export interface NotifyOptions { |
| 12 | message: string |
nothing calls this directly
no outgoing calls
no test coverage detected