mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
Split jslib into multiple modules (#363)
* Split jslib into multiple modules
This commit is contained in:
7
common/src/abstractions/event.service.ts
Normal file
7
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: () => Promise<any>;
|
||||
clearEvents: () => Promise<any>;
|
||||
}
|
||||
Reference in New Issue
Block a user