humanbehavior-js
Version:
SDK for HumanBehavior session and event recording
16 lines (13 loc) • 414 B
TypeScript
import { App } from 'vue';
interface HumanBehaviorPluginOptions {
apiKey: string;
ingestionUrl?: string;
logLevel?: 'none' | 'error' | 'warn' | 'info' | 'debug';
redactFields?: string[];
suppressConsoleErrors?: boolean;
recordCanvas?: boolean;
}
declare const HumanBehaviorPlugin: {
install: (app: App, options: HumanBehaviorPluginOptions) => void;
};
export { HumanBehaviorPlugin };