Strict null work in menubar

This commit is contained in:
Matt Bierner
2019-03-04 21:41:01 -08:00
parent 6f6aa56275
commit 243d3a482b
3 changed files with 28 additions and 21 deletions

View File

@@ -22,7 +22,7 @@ const $ = DOM.$;
export interface IMenuBarOptions {
enableMnemonics?: boolean;
visibility?: string;
getKeybinding?: (action: IAction) => ResolvedKeybinding;
getKeybinding?: (action: IAction) => ResolvedKeybinding | undefined;
alwaysOnMnemonics?: boolean;
}