UNPKG

@posthog/wizard

Version:

The PostHog wizard helps you to configure your project

17 lines (16 loc) 426 B
import type { CloudRegion } from './utils/types'; import { Integration } from './lib/constants'; type Args = { integration?: Integration; debug?: boolean; forceInstall?: boolean; installDir?: string; region?: CloudRegion; default?: boolean; signup?: boolean; localMcp?: boolean; ci?: boolean; apiKey?: string; }; export declare function runWizard(argv: Args): Promise<void>; export {};