mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
Move to libs
This commit is contained in:
7
libs/common/src/abstractions/event.service.ts
Normal file
7
libs/common/src/abstractions/event.service.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { EventType } from "../enums/eventType";
|
||||
|
||||
export abstract class EventService {
|
||||
collect: (eventType: EventType, cipherId?: string, uploadImmediately?: boolean) => Promise<any>;
|
||||
uploadEvents: (userId?: string) => Promise<any>;
|
||||
clearEvents: (userId?: string) => Promise<any>;
|
||||
}
|
||||
Reference in New Issue
Block a user