1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/abstractions/event.service.ts

8 lines
264 B
TypeScript
Raw Normal View History

2019-07-03 15:53:55 +02:00
import { EventType } from '../enums/eventType';
export abstract class EventService {
collect: (eventType: EventType, cipherId?: string, uploadImmediately?: boolean) => Promise<any>;
uploadEvents: () => Promise<any>;
2019-07-09 19:08:36 +02:00
clearEvents: () => Promise<any>;
2019-07-03 15:53:55 +02:00
}