mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 03:33:30 +00:00
docs(notification-processing): [PM-19877] System Notification Implementation - Removed unnecessary private member variable.
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
import { Subject, throwError } from "rxjs";
|
||||
import { throwError } from "rxjs";
|
||||
|
||||
import {
|
||||
SystemNotificationClearInfo,
|
||||
SystemNotificationCreateInfo,
|
||||
SystemNotificationEvent,
|
||||
SystemNotificationsService,
|
||||
} from "./system-notifications-service";
|
||||
|
||||
export class UnsupportedSystemNotificationsService implements SystemNotificationsService {
|
||||
private systemNotificationClickedSubject = new Subject<SystemNotificationEvent>();
|
||||
notificationClicked$ = throwError(() => new Error("Notification clicked is not supported."));
|
||||
|
||||
async create(createInfo: SystemNotificationCreateInfo): Promise<undefined> {
|
||||
|
||||
Reference in New Issue
Block a user