orlovedev/or-release

View on GitHub
src/types/app-ctx.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IAppConfig } from './app-config'
import type { IRawCommit } from './raw-commit'

export interface IAppCtx extends IAppConfig {
    commitList: IRawCommit[]
    latestVersionCommit: string
    currentCommit: string
    changelog: string
    newVersion: string
    allTags: string[]
}