UNPKG

@w6s/sdk

Version:

WorkPlusFE JavaScript SDK.

17 lines (16 loc) 599 B
import { ImportCordovaOptions, Platform } from '../types/import-cordova'; export default class CordovaImportInstance { private config; constructor(options?: ImportCordovaOptions, useHttp?: boolean); get userAgent(): string; /** * 返回注入的地址 * * 默认使用 local模式, * 当检测到是 https协议 (安卓) 或在 iframe 中打开时, * 若iOS或安卓的 cordovajs 地址存在,强制使用 http 模式 */ getImportUri(): string; mustUseHttpModel(): boolean; getCurrentPlatformByUserAgent(): Platform; }