2

我正在尝试在打字稿文件上使用一些科尔多瓦插件功能,但我无法构建文件。想象一下,我想访问设备平台和模型。有人可以帮我弄这个吗?我应该为插件的 js 文件上的每个函数创建接口吗?

提前致谢!

4

1 回答 1

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);
于 2014-04-28T12:19:06.887 回答