mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
event service
This commit is contained in:
6
src/abstractions/event.service.ts
Normal file
6
src/abstractions/event.service.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { EventType } from '../enums/eventType';
|
||||
|
||||
export abstract class EventService {
|
||||
collect: (eventType: EventType, cipherId?: string, uploadImmediately?: boolean) => Promise<any>;
|
||||
uploadEvents: () => Promise<any>;
|
||||
}
|
||||
Reference in New Issue
Block a user