UNPKG

humanbehavior-js

Version:

SDK for HumanBehavior session and event recording

25 lines 655 B
#!/usr/bin/env node /** * HumanBehavior SDK Auto-Installation CLI * * Usage: npx humanbehavior-js auto-install [api-key] * * This tool automatically detects the user's framework and modifies their codebase * to integrate the SDK with minimal user intervention. */ interface CLIOptions { apiKey?: string; projectPath?: string; yes?: boolean; dryRun?: boolean; } declare class AutoInstallCLI { private options; constructor(options: CLIOptions); run(): Promise<void>; private getApiKey; private confirmInstallation; private displayResults; } export { AutoInstallCLI }; //# sourceMappingURL=auto-install.d.ts.map