feat(app-update): skip dialog boxes support (#3267)

This commit is contained in:
甘杨 2019-12-27 19:09:28 +08:00 committed by Daniel Sogl
parent 4d7e937d7a
commit a74c894064

View File

@ -2,9 +2,11 @@ import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
export interface AppUpdateOptions {
authType: string;
authType?: string;
username?: string;
password?: string;
skipPromptDialog?: boolean;
skipProgressDialog?: boolean;
}
/**