UNPKG

@posthog/wizard

Version:

The PostHog wizard helps you to configure your project

14 lines (13 loc) 363 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; }; export declare function runWizard(argv: Args): Promise<void>; export {};