changelog-guru
Version:
Git changelog generator
11 lines (10 loc) • 392 B
TypeScript
import { BaseRule, IRule, IRuleConfig, IRuleParseOptions } from './BaseRule.js';
export interface IHighlightRuleConfig extends IRuleConfig {
camelCase: boolean;
masks: string[];
}
export default class HighlightRule extends BaseRule<IHighlightRuleConfig> implements IRule {
#private;
constructor(config: IHighlightRuleConfig);
parse({ commit }: IRuleParseOptions): void;
}