git-mob-core
Version:
Git Mob Core library to manage co-authoring
6 lines (5 loc) • 394 B
TypeScript
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 };