/** * A list of the containers that we can use `run` on. */ export const RUN_CONTAINERS: string[]; /** * Custom parsing and validation for the "run" command's container argument. * * @param {string} value The user-set container. * * @return {string} The container name to use. */ export function validateRunContainer(value: string): string;