UNPKG

@augment-vir/node

Version:

A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.

15 lines (14 loc) 545 B
/** * Parameters for `docker.container.copyTo`. * * @category Node : Docker : Util * @category Package : @augment-vir/node * @package [`@augment-vir/node`](https://www.npmjs.com/package/@augment-vir/node) */ export type CopyToDockerContainerParams = { hostPath: string; containerAbsolutePath: string; containerNameOrId: string; dockerFlags?: ReadonlyArray<string>; }; export declare function copyToContainer({ containerAbsolutePath, hostPath, containerNameOrId, dockerFlags, }: CopyToDockerContainerParams): Promise<void>;