envilder
Version:
A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth
11 lines • 565 B
TypeScript
import type { ILogger } from '../../domain/ports/ILogger.js';
import type { IVariableStore } from '../../domain/ports/IVariableStore.js';
export declare class FileVariableStore implements IVariableStore {
private logger;
constructor(logger: ILogger);
getMapping(source: string): Promise<Record<string, string>>;
getEnvironment(source: string): Promise<Record<string, string>>;
saveEnvironment(destination: string, envVariables: Record<string, string>): Promise<void>;
private escapeEnvValue;
}
//# sourceMappingURL=FileVariableStore.d.ts.map