1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-15 15:53:51 +00:00
Files
jslib/common/src/abstractions/event.service.ts
2021-12-17 06:09:55 +10:00

8 lines
288 B
TypeScript

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>;
}