UNPKG

envilder

Version:

A CLI and GitHub Action that securely centralizes your environment variables from AWS SSM or Azure Key Vault as a single source of truth

8 lines 429 B
import type { ParsedMapFile } from '../MapFileConfig.js'; export interface IVariableStore { getMapping(source: string): Promise<Record<string, string>>; getParsedMapping(source: string): Promise<ParsedMapFile>; getEnvironment(source: string): Promise<Record<string, string>>; saveEnvironment(destination: string, envVariables: Record<string, string>): Promise<void>; } //# sourceMappingURL=IVariableStore.d.ts.map