UNPKG

@qyrus/journeys

Version:

Record and replay user journeys with continuous streaming.

18 lines (16 loc) 409 B
export interface QyrusJourneysConfig { apiKey: string; } export interface JourneysInitResult { isActive: boolean; error?: any; } export declare const QyrusJourneys: { /** * Initializes the Qyrus Journeys. * Only the API key is accepted from the user. * * @param config - Configuration object with API key */ init(config: QyrusJourneysConfig): JourneysInitResult; };