From 065e80cccf142d283075a800bdd46656cb613a0f Mon Sep 17 00:00:00 2001 From: MaximBelov Date: Tue, 11 May 2021 09:03:31 +0300 Subject: [PATCH] feat(background-upload): add INITIALIZED state (#3658) --- src/@ionic-native/plugins/background-upload/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/@ionic-native/plugins/background-upload/index.ts b/src/@ionic-native/plugins/background-upload/index.ts index 54efff542..6af67a8b7 100644 --- a/src/@ionic-native/plugins/background-upload/index.ts +++ b/src/@ionic-native/plugins/background-upload/index.ts @@ -7,6 +7,7 @@ export enum UploadState { UPLOADED = 'UPLOADED', FAILED = 'FAILED', UPLOADING = 'UPLOADING', + INITIALIZED = 'INITIALIZED' } export type UploadStateType = keyof typeof UploadState;