@posthog/wizard
Version:
The PostHog wizard helps you to configure your project
41 lines (40 loc) • 1.63 kB
TypeScript
export declare enum Integration {
nextjs = "nextjs",
react = "react",
svelte = "svelte",
reactNative = "react-native",
astro = "astro",
reactRouter = "react-router",
django = "django",
flask = "flask",
laravel = "laravel"
}
export declare enum FeatureFlagDefinition {
ReactRouter = "wizard-react-router"
}
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-j.posthog.com";
export declare const ANALYTICS_TEAM_TAG = "docs-and-wizard";
export declare const DUMMY_PROJECT_API_KEY = "_YOUR_POSTHOG_PROJECT_API_KEY_";
export declare const POSTHOG_US_CLIENT_ID = "c4Rdw8DIxgtQfA80IiSnGKlNX8QN00cFWF00QQhM";
export declare const POSTHOG_EU_CLIENT_ID = "bx2C5sZRN03TkdjraCcetvQFPGH6N2Y9vRLkcKEy";
export declare const POSTHOG_DEV_CLIENT_ID = "DC5uRLVbGI02YQ82grxgnK6Qn12SXWpCqdPb60oZ";
export declare const OAUTH_PORT = 8239;
export declare const WIZARD_INTERACTION_EVENT_NAME = "wizard interaction";
export declare const WIZARD_REMARK_EVENT_NAME = "wizard remark";
export {};