scolladon/sfdx-git-delta

View on GitHub
src/types/work.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Config } from './config'

export type Manifest = Map<string, Set<string>>

export type Manifests = {
  package: Manifest
  destructiveChanges: Manifest
}

export type Work = {
  config: Config
  diffs: Manifests
  warnings: Error[]
}