1
0
mirror of https://github.com/bitwarden/desktop synced 2026-01-06 18:43:47 +00:00
Files
desktop/src/app/services/desktopMessaging.service.ts
2018-01-22 23:37:36 -05:00

15 lines
356 B
TypeScript

import { Injectable } from '@angular/core';
import {
MessagingService,
PlatformUtilsService,
} from 'jslib/abstractions';
@Injectable()
export class DesktopMessagingService implements MessagingService {
send(subscriber: string, arg: any = {}) {
const message = Object.assign({}, { command: subscriber }, arg);
// TODO
}
}