AlexTorresDev / custom-electron-titlebar

Custom electon title bar inpire on VS Code title bar
MIT License
866 stars 148 forks source link

Fix type declaration for `menu` option #184

Closed Lehoczky closed 2 years ago

Lehoczky commented 2 years ago

When someone uses the library with TypeScript and strictNullChecks, the menu option cannot be set to null, because it's current type is Menu | undefined.

image

By changing the type in interfaces.ts, TypeScript no longer shows an error:

image