Git - add missing event to the Repository interface (#238298)

This commit is contained in:
Ladislau Szomoru
2025-01-20 16:17:04 +01:00
committed by GitHub
parent e55ac22a12
commit 11b2f94022

View File

@@ -200,6 +200,7 @@ export interface Repository {
readonly ui: RepositoryUIState;
readonly onDidCommit: Event<void>;
readonly onDidCheckout: Event<void>;
getConfigs(): Promise<{ key: string; value: string; }[]>;
getConfig(key: string): Promise<string>;