UNPKG

envilder

Version:

A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth

15 lines 828 B
import type { CliOptions } from '../../domain/CliOptions.js'; import { OperationMode } from '../../domain/OperationMode.js'; export declare class DispatchActionCommand { readonly map?: string | undefined; readonly envfile?: string | undefined; readonly key?: string | undefined; readonly value?: string | undefined; readonly ssmPath?: string | undefined; readonly profile?: string | undefined; readonly mode: OperationMode; constructor(map?: string | undefined, envfile?: string | undefined, key?: string | undefined, value?: string | undefined, ssmPath?: string | undefined, profile?: string | undefined, mode?: OperationMode); static fromCliOptions(options: CliOptions): DispatchActionCommand; private static determineOperationMode; } //# sourceMappingURL=DispatchActionCommand.d.ts.map