UNPKG

kiot-cordova-plugin-home-console

Version:

This plugin allows your Android app to download and install compressed updates without the Google Play Store.

38 lines (28 loc) 523 B
declare module 'kiot-cordova-plugin-home-console' { interface Update { /** * File name. */ name: string; /** * File path. */ path: string; /** * File size. */ size: number; /** * Unix timestamp. */ firstInstallTime?: number; /** * MD5 Checksum. */ checksum: string; /** * App details. */ app: App; } }