mirror of
https://github.com/bitwarden/browser
synced 2024-12-26 18:04:07 +01:00
4 lines
94 B
TypeScript
4 lines
94 B
TypeScript
export abstract class MessagingService {
|
|
send: (subscriber: string, arg?: any) => void;
|
|
}
|