UNPKG

@posthog/wizard

Version:

The PostHog wizard helps you to configure your project

9 lines (8 loc) 340 B
import type { WizardOptions } from '../../utils/types'; export declare abstract class EnvironmentProvider { protected options: WizardOptions; name: string; constructor(options: WizardOptions); abstract detect(): Promise<boolean>; abstract uploadEnvVars(vars: Record<string, string>): Promise<Record<string, boolean>>; }