Skip to content

Commit

Permalink
Update notify.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Shelamkoff authored Jun 18, 2024
1 parent 90503be commit 0ee3e73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function createElementFromHTML(html) {
return result[0];
return result;
}
class Notifier {
export class Notifier {
constructor(position = null) {
this._queue = []
this._position = position;
Expand Down Expand Up @@ -127,7 +127,7 @@ class Notifier {
this.removeByIndex(this._queue.length - 1)
}
}
class Notification {
export class Notification {
constructor(options) {
let _a, _b, _c, _d, _e;
this.message = options.message;
Expand Down Expand Up @@ -252,7 +252,7 @@ class Notification {
}
}

class ExpandedNotification extends Notification {
export class ExpandedNotification extends Notification {
constructor(options) {
super(options)
this.title = options.title || 'Notification'
Expand Down

0 comments on commit 0ee3e73

Please sign in to comment.