UNPKG

@aiot-toolkit/emulator

Version:

vela emulator tool.

19 lines (18 loc) 560 B
import { VelaImageType } from '../typing/Vvd'; import { VelaMiwear5 } from './miwear5'; export declare class MiniSound5 extends VelaMiwear5 { imageType: VelaImageType; appDir: string; static emulatorStartedFlag: RegExp; static appStartedFlag: RegExp; /** * 使用 pm 安装快应用 * @param targeRpk 快应用的rpk文件路径 */ install(targeRpk: string): Promise<void>; /** * 使用 pm 卸载快应用 * @param packageName 快应用的包名 */ uninstall(packageName: string): Promise<void>; }