UNPKG

git-mob-core

Version:
6 lines (5 loc) 394 B
import { Author } from '../author.js'; import { httpFetch } from '../fetch/http-fetch.js'; declare function fetchGitHubAuthors(usernames: string[], userAgentHeader: string, fetch?: typeof httpFetch): Promise<Author[]>; declare function searchGitHubAuthors(query: string, userAgentHeader: string, fetch?: typeof httpFetch): Promise<Author[]>; export { fetchGitHubAuthors, searchGitHubAuthors };