Git - add the new method into the interface (#276152)

This commit is contained in:
Ladislau Szomoru
2025-11-07 18:36:53 +00:00
committed by GitHub
parent 55e72a1f5e
commit e36e94ac8b

View File

@@ -237,6 +237,7 @@ export interface Repository {
diff(cached?: boolean): Promise<string>;
diffWithHEAD(): Promise<Change[]>;
diffWithHEAD(path: string): Promise<string>;
diffWithHEADShortStats(path?: string): Promise<CommitShortStat>;
diffWith(ref: string): Promise<Change[]>;
diffWith(ref: string, path: string): Promise<string>;
diffIndexWithHEAD(): Promise<Change[]>;