@binance/sentry-miniapp
Version:
17 lines • 492 B
TypeScript
/**
* 小程序平台 SDK 接口
*/
interface SDK {
request: Function;
httpRequest?: Function;
getSystemInfoSync: Function;
onError?: Function;
onUnhandledRejection?: Function;
onPageNotFound?: Function;
onMemoryWarning?: Function;
getLaunchOptionsSync?: Function;
}
declare const sdk: SDK;
declare const appName: "unknown" | "wechat" | "alipay" | "bytedance" | "dingtalk" | "qq" | "swan";
export { sdk, appName };
//# sourceMappingURL=crossPlatform.d.ts.map