import { EventType } from "../../enums"; import { CipherView } from "../../vault/models/view/cipher.view"; export abstract class EventCollectionService { collectMany: ( eventType: EventType, ciphers: CipherView[], uploadImmediately?: boolean, ) => Promise; collect: ( eventType: EventType, cipherId?: string, uploadImmediately?: boolean, organizationId?: string, ) => Promise; }