Browse Source

Updates config types to better match

main
Eric Amodio 6 years ago
parent
commit
bb2b0c2504
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/ui/config.ts

+ 4
- 4
src/ui/config.ts View File

@ -198,7 +198,7 @@ export interface ILineHistoryExplorerConfig extends IFileHistoryExplorerConfig {
export interface IMenuConfig { export interface IMenuConfig {
editor: editor:
| boolean
| false
| { | {
blame: boolean; blame: boolean;
clipboard: boolean; clipboard: boolean;
@ -208,20 +208,20 @@ export interface IMenuConfig {
remote: boolean; remote: boolean;
}; };
editorGroup: editorGroup:
| boolean
| false
| { | {
compare: boolean; compare: boolean;
history: boolean; history: boolean;
}; };
editorTab: editorTab:
| boolean
| false
| { | {
compare: boolean; compare: boolean;
history: boolean; history: boolean;
remote: boolean; remote: boolean;
}; };
explorer: explorer:
| boolean
| false
| { | {
compare: boolean; compare: boolean;
history: boolean; history: boolean;

Loading…
Cancel
Save