Make ErrorNotification extend Notification

It was extending the non existent NotificationOptions, causing only the `stack` attribute to be available.
This commit is contained in:
Erik Dalén
2017-11-03 00:52:09 +01:00
committed by GitHub
parent b67c928904
commit ff801f0fe3

View File

@@ -206,7 +206,7 @@ declare global {
gutterName?: string;
}
interface ErrorNotification extends NotificationOptions {
interface ErrorNotification extends Notification {
stack?: string;
}