UNPKG

492 BTypeScriptView Raw
1export declare enum Arch {
2 ia32 = 0,
3 x64 = 1,
4 armv7l = 2,
5 arm64 = 3
6}
7export declare type ArchType = "x64" | "ia32" | "armv7l" | "arm64";
8export declare function toLinuxArchString(arch: Arch, targetName: string): string;
9export declare function getArchCliNames(): Array<string>;
10export declare function getArchSuffix(arch: Arch): string;
11export declare function archFromString(name: string): Arch;
12export declare function getArtifactArchName(arch: Arch, ext: string): string;