UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

16 lines (15 loc) 557 B
import type { InitializationStatus } from './boilerplateTemplates'; /** * Result of ensuring coder environment variables inside `.env`. */ type EnsureCoderEnvFileResult = { readonly envFileStatus: InitializationStatus; readonly initializedEnvVariableNames: ReadonlyArray<string>; }; /** * Ensures `.env` exists and contains all required coder environment variables. * * @private function of `initializeCoderProjectConfiguration` */ export declare function ensureCoderEnvFile(projectPath: string): Promise<EnsureCoderEnvFileResult>; export {};