@posthog/wizard
Version:
The PostHog wizard helps you to configure your project
9 lines (8 loc) • 340 B
TypeScript
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>>;
}