UNPKG

@aiot-toolkit/emulator

Version:

vela emulator tool.

18 lines (17 loc) 786 B
/** * 本文件用于导出一些同构内容,请勿引用非同构内容,例如 nodejs 特性内容,或者 browser 特性内容 * @TODO 项目转为 ESM 模块后,可以删除 * */ import { VelaImageType } from '../typing/Vvd'; export declare function isVelaImageType(value: any): value is VelaImageType; export declare function isMiwearImageType(val: VelaImageType): boolean; export declare function getDefaultImage(): VelaImageType; export declare enum RpkStartFailedReason { getManifestFailed = "Get app manifest.json failed" } export declare enum RpkInstallFailedReason { Busy = "Installation process is busy", Timeout = "Install timeout", Poweroff = "Device poweroff", LowStorage = "Application exceeds maximum quantity or remaining space is low" }