我正在尝试在打字稿文件上使用一些cordova插件函数,但我无法构建该文件。想象一下,我想访问设备平台和模型。有人可以帮我弄这个吗?我应该为插件的js文件中的每个函数创建接口吗?
提前致谢!
答案 0 :(得分:2)
已有定义:https://github.com/borisyankov/DefinitelyTyped/blob/master/cordova/plugins/Device.d.ts
interface Device {
/** Get the version of Cordova running on the device. */
cordova: string;
/**
* The device.model returns the name of the device's model or product. The value is set
* by the device manufacturer and may be different across versions of the same product.
*/
model: string;
/** device.name is deprecated as of version 2.3.0. Use device.model instead. */
name: string;
/** Get the device's operating system name. */
platform: string;
/** Get the device's Universally Unique Identifier (UUID). */
uuid: string;
/** Get the operating system version. */
version: string;
}
declare var device: Device;
您只需引用此文件(使用///<reference
评论),然后即可:
console.log(device.model,device.platform);