1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

event service

This commit is contained in:
Kyle Spearrin
2019-07-03 09:53:55 -04:00
parent e15e0eebbd
commit cfec7c4815
4 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { EventType } from '../../enums/eventType';
export class EventData {
type: EventType;
cipherId: string;
}