import type { Config } from 'conventional-changelog-config-spec'; /** * @file Data Models - ChangelogConfigType * @module grease/models/ChangelogConfigType */ /** * Data model that describes a commit type's settings in a `CHANGELOG` file. * * @see https://github.com/conventional-changelog/conventional-changelog * * @class * @implements {Config.Type.Base} */ export default class ChangelogConfigType implements Config.Type.Base { hidden?: Config.Type.Base['hidden']; section?: Config.Type.Base['section']; type: Config.Type.Base['type']; }