UNPKG

sentry-uniapp

Version:

用于Uniapp/小程序/快应用等平台的 Sentry SDK

18 lines 532 B
/** * 小程序平台 SDK 接口 */ interface SDK { request: Function; httpRequest?: Function; getSystemInfo: Function; getSystemInfoSync: Function; onError?: Function; onUnhandledRejection?: Function; onPageNotFound?: Function; onMemoryWarning?: Function; getLaunchOptionsSync?: Function; } declare const sdk: SDK; declare const appName: "uniapp" | "unknown" | "wechat" | "alipay" | "bytedance" | "dingtalk" | "qq" | "swan"; export { sdk, appName }; //# sourceMappingURL=crossPlatform.d.ts.map