/** * * 需要唤起的 目标app 信息处理中心 * */ import { CallAppOptions, DownloadConfig } from '../index'; export declare const enum AppFlags { ZZ = 1, ZZSeller = 2, ZZHunter = 4, ZZSeeker = 8, WXMini = 16, NoZZ = 30 } export declare const appSchemePrefix: { 1: string; 2: string; 4: string; 8: string; }; export declare const appUniversalPath: { 1: string; 2: string; 4: string; 8: string; }; export declare const getTargetInfo: (options: CallAppOptions) => { downloadConfig: DownloadConfig; flag: AppFlags.WXMini; name: string; schemePrefix: string; universalPath: string; } | { downloadConfig: DownloadConfig; flag: AppFlags.ZZ | AppFlags.ZZSeller | AppFlags.ZZHunter | AppFlags.ZZSeeker; name: string; schemePrefix: string; universalPath: string; } | undefined; export declare const handlePath2appName: (path: string) => { appName: string | undefined; };