setup-cpp
Version: 
Install all the tools required for building and testing C++/C projects.
12 lines (11 loc) • 509 B
TypeScript
import type { InstallationInfo } from "./InstallationInfo.js";
import type { BrewPackOptions } from "./install-pack-options.js";
/** A function that installs a package using brew
 *
 * @param name The name of the package
 * @param version The version of the package (optional)
 * @param options The options for installing the package
 *
 * @returns The installation information
 */
export declare function installBrewPack(name: string, version?: string, options?: BrewPackOptions): Promise<InstallationInfo>;