UNPKG

sfdx-git-delta

Version:

Generate the sfdx content in source format and destructive change from two git commits

8 lines (7 loc) 246 B
import type { Metadata } from '../types/metadata.js'; export interface MetadataRepository { has(path: string): boolean; get(path: string): Metadata | undefined; getFullyQualifiedName(path: string): string; values(): Metadata[]; }