@posthog/wizard
Version:
The PostHog wizard helps you to configure your project
27 lines (26 loc) • 934 B
TypeScript
export declare enum Integration {
nextjs = "nextjs",
react = "react",
svelte = "svelte",
reactNative = "react-native",
astro = "astro"
}
export declare function getIntegrationDescription(type: string): string;
type IntegrationChoice = {
name: string;
value: string;
};
export declare function getIntegrationChoices(): IntegrationChoice[];
export interface Args {
debug: boolean;
integration: Integration;
}
export declare const IS_DEV: boolean;
export declare const DEBUG = false;
export declare const DEFAULT_URL: string;
export declare const ISSUES_URL = "https://github.com/posthog/wizard/issues";
export declare const DEFAULT_HOST_URL: string;
export declare const ANALYTICS_POSTHOG_PUBLIC_PROJECT_WRITE_KEY = "sTMFPsFhdP1Ssg";
export declare const ANALYTICS_HOST_URL = "https://internal-t.posthog.com";
export declare const DUMMY_PROJECT_API_KEY = "_YOUR_POSTHOG_PROJECT_API_KEY_";
export {};