-
Notifications
You must be signed in to change notification settings - Fork 37
Closed
Labels
Description
Example
class BrowserWindow extends EventEmitter {
...
setMenu(menu: Menu): void;
...
}
should be
class BrowserWindow extends EventEmitter {
...
setMenu(menu: Menu | null): void;
...
}
The whole API needs to be reviewed and instances where an instance can be null need to be marked.
mike-morr, kant2002 and TechnicalSoup