mastra
Version:
cli for mastra
15 lines • 583 B
TypeScript
export declare abstract class EnvService {
abstract getEnvValue(key: string): Promise<string | null>;
abstract setEnvValue(key: string, value: string): Promise<void>;
}
export declare class FileEnvService extends EnvService {
private static readonly ENV_KEY_REGEX;
private readonly filePath;
private validateEnvEntry;
constructor(filePath: string);
private envLineRegex;
private updateEnvData;
getEnvValue(key: string): Promise<string | null>;
setEnvValue(key: string, value: string): Promise<void>;
}
//# sourceMappingURL=service.env.d.ts.map