Git - 💄 fix history item details provider name (#238045)

This commit is contained in:
Ladislau Szomoru
2025-01-16 12:25:19 +01:00
committed by GitHub
parent 118e6f5373
commit 7610cc1d19
11 changed files with 34 additions and 34 deletions

View File

@@ -289,7 +289,7 @@ export interface BranchProtectionProvider {
provideBranchProtection(): BranchProtection[];
}
export interface SourceControlHistoryItemDetailProvider {
export interface SourceControlHistoryItemDetailsProvider {
provideHoverCommands(repository: Repository): Promise<Command[] | undefined>;
provideMessageLinks(repository: Repository, message: string): Promise<string | undefined>;
}
@@ -321,7 +321,7 @@ export interface API {
registerPostCommitCommandsProvider(provider: PostCommitCommandsProvider): Disposable;
registerPushErrorHandler(handler: PushErrorHandler): Disposable;
registerBranchProtectionProvider(root: Uri, provider: BranchProtectionProvider): Disposable;
registerSourceControlHistoryItemDetailProvider(provider: SourceControlHistoryItemDetailProvider): Disposable;
registerSourceControlHistoryItemDetailsProvider(provider: SourceControlHistoryItemDetailsProvider): Disposable;
}
export interface GitExtension {