UNPKG

github-contributions-counter

Version:

A simple Javascript API that will return the public github contributions history for a user based on a universal function

9 lines (8 loc) 239 B
import { LogLevels } from './main'; interface Scraper { username: string; proxy: null | string; logs: LogLevels; } declare const scraper: ({ username, proxy, logs }: Scraper) => Promise<string>; export default scraper;