setup-cpp
Version:
Install all the tools required for building and testing C++/C projects.
17 lines (16 loc) • 517 B
TypeScript
/**
* Add an APK repository
* @param repoUrl The URL of the repository to add
* @returns Whether the repository was added successfully
*/
export declare function addApkRepository(repoUrl: string): Promise<boolean>;
/**
* Enable the community repository
* @returns Whether the repository was added successfully
*/
export declare function enableCommunityRepository(): Promise<boolean>;
/**
* Get the Alpine version
* @returns The Alpine version
*/
export declare function getAlpineVersion(): Promise<string>;