UNPKG

hybrid_plus

Version:

Hybrid Flutter Javascript SDK

73 lines (72 loc) 2.5 kB
import * as core from './core'; import * as Auth from './auth'; import * as Device from './device'; import * as Server from './server'; import * as Appbar from './appbar'; import * as Cachet from './cachet'; import * as User from './user'; import * as Image from './image'; import * as File from './file'; import * as Contacts from './contacts'; import * as Dialog from './dialog'; import * as Video from './video'; import * as Network from './network'; import * as Location from './location'; import * as Util from './common'; import * as Event from './event'; import * as Storage from './storage'; import * as Bluetooth from './bluetooth'; import * as WebView from './webview'; import * as App from './app'; import * as Audio from './audio'; import * as Config from './config'; /** 认证接口 */ export declare const auth: typeof Auth; /** 设备接口 */ export declare const device: typeof Device; /** 服务接口 */ export declare const server: typeof Server; /** 标题栏接口 */ export declare const appbar: typeof Appbar; /** 胶囊接口 */ export declare const cachet: typeof Cachet; /** 用户接口 */ export declare const user: typeof User; /** 图片接口 */ export declare const image: typeof Image; /** 文件接口 */ export declare const file: typeof File; /** 联系人接口 */ export declare const contacts: typeof Contacts; /** 弹框接口 */ export declare const dialog: typeof Dialog; /** 视频接口 */ export declare const video: typeof Video; /** 网络接口 */ export declare const network: typeof Network; /** 地理位置 */ export declare const location: typeof Location; /** 通用 */ export declare const util: typeof Util; /** 页面事件 */ export declare const event: typeof Event; /** 存储 */ export declare const storage: typeof Storage; /** 蓝牙 */ export declare const bluetooth: typeof Bluetooth; /** WebView */ export declare const webview: typeof WebView; /** 应用 */ export declare const app: typeof App; /** 录音 */ export declare const audio: typeof Audio; /** Hybrid SDK 初始化配置 */ export declare const init: (options: import("./types/core").CoreOptions) => void; export declare const isDeviceReady: boolean; export declare const checkApi: typeof Config.checkApi; /** Hybrid 执行事件(异步) */ export declare const exec: typeof core.exec; /** Hybrid 执行事件(同步) */ export declare const execSync: typeof core.execSync; /** Hybrid SDK 监听错误回调 */ export declare const error: (fn: () => void) => void;