@posthog/wizard
Version:
The PostHog wizard helps you to configure your project
8 lines (7 loc) • 864 B
TypeScript
import type { CloudRegion } from './types';
export declare const getAssetHostFromHost: (host: string) => string;
export declare const getUiHostFromHost: (host: string) => string;
export declare const getHostFromRegion: (region: CloudRegion) => "http://localhost:8010" | "https://us.i.posthog.com" | "https://eu.i.posthog.com";
export declare const getCloudUrlFromRegion: (region: CloudRegion) => "http://localhost:8010" | "https://us.posthog.com" | "https://eu.posthog.com";
export declare const getOauthClientIdFromRegion: (region: CloudRegion) => "c4Rdw8DIxgtQfA80IiSnGKlNX8QN00cFWF00QQhM" | "bx2C5sZRN03TkdjraCcetvQFPGH6N2Y9vRLkcKEy" | "DC5uRLVbGI02YQ82grxgnK6Qn12SXWpCqdPb60oZ";
export declare const getLlmGatewayUrlFromHost: (host: string) => "http://localhost:3308/wizard" | "https://gateway.eu.posthog.com/wizard" | "https://gateway.us.posthog.com/wizard";