8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
import "typings-global";
|
|
/**
|
|
* converts an erray of env strings from docker remote api to an usable object.
|
|
* @param envArrayArg
|
|
* @returns {}
|
|
*/
|
|
export declare let makeEnvObject: (envArrayArg: string[]) => {};
|