UNPKG

setup-cpp

Version:

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

12 lines (11 loc) 247 B
#!/usr/bin/env node import { type Opts } from "./lib.ts"; /** * The options for the setup-cpp function */ type CliOpts = Opts & { help: boolean; version: boolean; }; export declare function parseArgs(args: string[]): CliOpts; export {};