UNPKG

changelog-guru

Version:
11 lines (10 loc) 392 B
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; }