(url: string, headers: Record<string, string>)
| 138 | |
| 139 | export interface GhcrHttp { |
| 140 | get(url: string, headers: Record<string, string>): Promise<GhcrHttpResponse>; |
| 141 | head(url: string, headers: Record<string, string>): Promise<GhcrHttpResponse>; |
| 142 | } |
| 143 |
no outgoing calls