import type { IGreaseScripts } from "../interfaces"; /** * @file Data Models - GreaseScripts * @module grease/models/GreaseScripts */ /** * `IGreaseScripts` data model. * * @class * @implements {IGreaseScripts} */ export default class GreaseScripts implements IGreaseScripts { postbump?: IGreaseScripts['postbump']; postchangelog?: IGreaseScripts['postchangelog']; postcommit?: IGreaseScripts['postcommit']; postdepchecker?: IGreaseScripts['postdepchecker']; postgreaser?: IGreaseScripts['postgreaser']; postnotes?: IGreaseScripts['postnotes']; postrelease?: IGreaseScripts['postrelease']; posttag?: IGreaseScripts['posttag']; prebump?: IGreaseScripts['prebump']; prechangelog?: IGreaseScripts['prechangelog']; precommit?: IGreaseScripts['precommit']; pregreaser?: IGreaseScripts['pregreaser']; prenotes?: IGreaseScripts['prenotes']; prerelease?: IGreaseScripts['prerelease']; pretag?: IGreaseScripts['pretag']; }