@posthog/wizard
Version:
The PostHog wizard helps you to configure your project
11 lines (10 loc) • 361 B
TypeScript
import type { Integration } from '../lib/constants';
export declare function addOrUpdateEnvironmentVariablesStep({ installDir, variables, integration, }: {
installDir: string;
variables: Record<string, string>;
integration: Integration;
}): Promise<{
relativeEnvFilePath: string;
addedEnvVariables: boolean;
addedGitignore: boolean;
}>;