/** * @typedef {import('../config').WPConfig} WPConfig */ /** * Runs an arbitrary command on the given Docker container. * * @param {Object} options * @param {string} options.container The Docker container to run the command on. * @param {string[]} options.command The command to run. * @param {string[]} options.'--' Any arguments that were passed after a double dash. * @param {string} options.envCwd The working directory for the command to be executed from. * @param {Object} options.spinner A CLI spinner which indicates progress. * @param {boolean} options.debug True if debug mode is enabled. */ export default function run({ container, command, "--": doubleDashedArgs, envCwd, spinner, debug, }: { container: string; command: string[]; : string[]; envCwd: string; spinner: Object; debug: boolean; }): Promise; export type WPConfig = import("../config").WPConfig;