bananalyzer
Version:
A simple tool for windows 10, that downloads APKs from Google playstore, analyzes them, and lists all the Google and Huawei SDKs (kits) that are integrated, along with other metadata
19 lines (18 loc) • 554 B
TypeScript
import meow from 'meow';
export type MyFlags = {
debug: boolean;
keep: boolean;
reuse: boolean;
batch: number;
path: string;
name: string;
};
export declare const CMD_PACKAGE = "package";
export declare const CMD_APK = "apk";
export declare const CMD_LIST = "list";
export declare const CMD_APK_LIST = "apklist";
export declare const CMD_HELP = "help";
export declare const CMD_VERSION = "version";
declare const cliHelper: meow.Result<any>;
export default cliHelper;
export declare const commitSuicide: (msg: string) => boolean;