| 25 | export type DetectGhFn = (host?: string) => { available: boolean; token?: string }; |
| 26 | |
| 27 | export interface ProbeTokenStore { |
| 28 | get(host: string): Promise<{ token?: string } | null>; |
| 29 | } |
| 30 | |
| 31 | export interface CheckPushPermissionOptions { |
| 32 | owner: string; |
no outgoing calls
no test coverage detected