import { ContributionDay, FetchParams } from '../types'; export interface Provider { readonly name: string; fetchEvents(params: FetchParams): Promise; } export type FetchLike = (input: RequestInfo | URL, init?: RequestInit) => Promise; export type CliRunner = (executable: string, args: readonly string[]) => Promise; //# sourceMappingURL=types.d.ts.map