envilder
Version:
A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth
6 lines • 309 B
TypeScript
export interface IVariableStore {
getMapping(source: string): Promise<Record<string, string>>;
getEnvironment(source: string): Promise<Record<string, string>>;
saveEnvironment(destination: string, envVariables: Record<string, string>): Promise<void>;
}
//# sourceMappingURL=IVariableStore.d.ts.map