@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
17 lines (16 loc) • 647 B
TypeScript
export declare enum ArchitectureType {
AMD64 = "amd64",
ARM64 = "arm64"
}
export declare class Architecture {
static readonly NODE_ARCH_X64: string;
static readonly NODE_ARCH_ARM64: string;
static readonly NODE_ARCH_AARCH64: string;
static readonly LINUX_AMD64: string;
static readonly LINUX_ARM64: string;
static getArchitecture(rawArchitecture?: string): ArchitectureType;
static getLinuxPlatform(rawArchitecture?: string): string;
static isAmd64(rawArchitecture?: string): boolean;
static isArm64(rawArchitecture?: string): boolean;
static getRawArchitecture(rawArchitecture?: string): string;
}