UNPKG

setup-cpp

Version:

Install all the tools required for building and testing C++/C projects.

9 lines (8 loc) 270 B
import type { InstallationInfo } from "./setupBin.js"; type DnfPackage = { name: string; version?: string; }; /** A function that installs a package using dnf */ export declare function setupDnfPack(packages: DnfPackage[]): Promise<InstallationInfo>; export {};