|
|
@ -1,4 +1,3 @@ |
|
|
|
import type { GraphRefType } from '@gitkraken/gitkraken-components'; |
|
|
|
import type { Disposable, Event, ExtensionContext, SecretStorageChangeEvent } from 'vscode'; |
|
|
|
import { EventEmitter } from 'vscode'; |
|
|
|
import type { ViewShowBranchComparison } from './config'; |
|
|
@ -235,10 +234,12 @@ export interface StoredGraphColumn { |
|
|
|
width?: number; |
|
|
|
} |
|
|
|
|
|
|
|
export type StoredGraphRefType = 'head' | 'remote' | 'tag'; |
|
|
|
|
|
|
|
export interface StoredGraphHiddenRef { |
|
|
|
id: string; |
|
|
|
name: string; |
|
|
|
type: GraphRefType; |
|
|
|
type: StoredGraphRefType; |
|
|
|
avatarUrl?: string; |
|
|
|
} |
|
|
|
|
|
|
|