|
|
@ -1,5 +1,6 @@ |
|
|
|
import { TextDocumentShowOptions } from 'vscode'; |
|
|
|
import type { IssueOrPullRequest } from '../../git/models/issue'; |
|
|
|
import type { PullRequest } from '../../git/models/pullRequest'; |
|
|
|
import { IpcCommandType, IpcNotificationType } from '../protocol'; |
|
|
|
|
|
|
|
export type FileShowOptions = TextDocumentShowOptions; |
|
|
@ -21,7 +22,7 @@ export type CommitDetails = { |
|
|
|
|
|
|
|
export type RichCommitDetails = { |
|
|
|
formattedMessage?: string; |
|
|
|
pullRequest?: IssueOrPullRequest; |
|
|
|
pullRequest?: PullRequest; |
|
|
|
issues?: IssueOrPullRequest[]; |
|
|
|
}; |
|
|
|
|
|
|
|