1
0
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:
Patrick Pimentel
2025-07-24 11:44:30 -04:00
parent 2deab4d897
commit 8a8dd4e156

View File

@@ -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> {