/** * @file Vars from enviroment */ /** HTTPDNS resolve 接口地址 */ export declare const httpdnsResolveApi: string; /** Log 接口前缀 */ export declare const logApiPrefix: string; export type MpPlatform = 'wx' | 'tt' | 'ks'; /** * 小程序平台,支持 * * - 微信:`wx` * - 抖音(头条):`tt` * - 快手:`ks` * * 注入逻辑见 `build/inject-env.js` */ export declare const mpPlatform: MpPlatform; /** * SDK 版本,形如 `0.1.0`; * 注入逻辑见 `build/inject-env.js` */ export declare const version: string;