| 118 | allowDangerousDomainSuffix: string[]; |
| 119 | groups: OutputGroup[]; |
| 120 | } |
| 121 | |
| 122 | export type Fetcher = (url: string) => Promise<string>; |
| 123 | |
| 124 | export interface ContentCache { |
| 125 | cached(key: string, fresh: () => Promise<string>): Promise<string>; |
no outgoing calls
no test coverage detected