UNPKG

739 BTypeScriptView Raw
1import { Binary, BinaryUrl, OS } from './binary';
2/**
3 * The android sdk binary.
4 */
5export declare class AndroidSDK extends Binary {
6 static os: OS[];
7 static id: string;
8 static versionDefault: string;
9 static isDefault: boolean;
10 static DEFAULT_API_LEVELS: string;
11 static DEFAULT_ARCHITECTURES: string;
12 static DEFAULT_PLATFORMS: string;
13 static VERSIONS: {
14 [api_level: number]: string;
15 };
16 constructor(alternateCDN?: string);
17 id(): string;
18 prefix(): string;
19 suffix(): string;
20 getUrl(): Promise<BinaryUrl>;
21 getVersionList(): Promise<string[]>;
22 url(ostype: string): string;
23 zipContentName(): string;
24 executableSuffix(): string;
25 remove(sdkPath: string): void;
26}