github-contributions-counter
Version:
A simple Javascript API that will return the public github contributions history for a user based on a universal function
10 lines (9 loc) • 322 B
TypeScript
import { LogLevels, All } from './main';
import { UrlsToQuery } from './parcer';
interface Collector {
urlsToQuery: UrlsToQuery | null;
proxy: null | string;
logs: LogLevels;
}
declare const collector: ({ urlsToQuery, proxy, logs }: Collector) => Promise<Array<All | null>>;
export default collector;