UNPKG

@altostra/core

Version:

Core library for shared types and logic

9 lines (8 loc) 401 B
import type { Maybe } from "../Maybe"; import type { Dict } from "../Types"; import type { IParameterStoreLayer } from "./ParametersManager"; export declare class EnvironmentParameters implements IParameterStoreLayer { get(param: string): Promise<Maybe<string>>; getParameters(params: string[]): Promise<Record<string, string>>; getParametersByPath(path: string): Promise<Dict<string>>; }