@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) • 355 B
TypeScript
import { Config } from './types/index.js';
import '../commit-types/types/index.js';
/**
* Loads and merges changelog configuration from various file formats
* @returns {Config} Merged configuration object
* @throws {Error} If configuration file exists but contains invalid content
*/
declare function config(): Config;
export { config as default };