@r4lrgx/gitmoji
Version:
🧱 My customized Gitmoji Config - a fork of https://github.com/arvinxx/gitmoji-commit-workflow - just with several bug fixes and a cleaner look.
12 lines (9 loc) • 390 B
TypeScript
import { GitHubLookup } from '../types/index.js';
import '../../commit-types/types/index.js';
/**
* Looks up GitHub user information by email address
* @param {string} email - The email address to look up
* @returns {GitHubLookup | null} User information or null if not found/error occurs
*/
declare function gitHubLookup(email: string): GitHubLookup | null;
export { gitHubLookup };