UNPKG

@orcdkestrator/orcdk-plugin-localstack

Version:
21 lines 855 B
/** * Utility functions for LocalStack plugin */ /** * Expands environment variables in a string * Supports ${VAR_NAME} and $VAR_NAME syntax * * @param value The string potentially containing environment variables * @returns The string with environment variables expanded */ export declare function expandEnvironmentVariables(value: string): string; export declare function expandEnvironmentVariables(value: null): null; export declare function expandEnvironmentVariables(value: undefined): undefined; /** * Recursively expands environment variables in an object * * @param obj The object potentially containing environment variables in string values * @returns The object with environment variables expanded in all string values */ export declare function expandEnvironmentVariablesInObject<T>(obj: T): T; //# sourceMappingURL=utils.d.ts.map