its for when you want to get like notifications for your reposts
1import { ConnectionStatus, Notification } from "bsky-repost-likes-monitor";
2import { ProtocolWithReturn } from "webext-bridge";
3
4declare module "webext-bridge" {
5 export interface ProtocolMap {
6 connectService: { actorId: string; serviceDomain: string };
7 disconnectService: {};
8 connectionStatus: ProtocolWithReturn<{}, ConnectionStatus>;
9 setConnectionStatus: ConnectionStatus;
10 error: ProtocolWithReturn<{}, string | null>;
11 setError: string | null;
12 items: ProtocolWithReturn<{}, Notification[]>;
13 setItems: Notification[];
14 clearItems: {};
15 }
16}