1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

abstract services

This commit is contained in:
Kyle Spearrin
2018-02-08 12:24:37 -05:00
parent 9cd74af2df
commit 28ed4144db
5 changed files with 20 additions and 19 deletions

View File

@@ -1,3 +1,3 @@
export interface MessagingService {
send(subscriber: string, arg?: any): void;
export abstract class MessagingService {
send: (subscriber: string, arg?: any) => void;
}