| 122 | export type Fetcher = (url: string) => Promise<string>; |
| 123 | |
| 124 | export interface ContentCache { |
| 125 | cached(key: string, fresh: () => Promise<string>): Promise<string>; |
| 126 | } |
| 127 | |
| 128 | export interface BuildContext { |
| 129 | fetcher?: Fetcher; |
| 130 | cache?: ContentCache; |
nothing calls this directly
no outgoing calls
no test coverage detected