@posthog/wizard
Version:
The PostHog wizard helps you to configure your project
7 lines (6 loc) • 311 B
TypeScript
import type { Integration } from '../../lib/constants';
import type { WizardOptions } from '../../utils/types';
export declare const uploadEnvironmentVariablesStep: (envVars: Record<string, string>, { integration, options, }: {
integration: Integration;
options: WizardOptions;
}) => Promise<string[]>;