1 // Copyright 2015-present 650 Industries. All rights reserved. 2 package host.exp.exponent.experience 3 4 interface DevBundleDownloadProgressListener { onProgressnull5 fun onProgress(status: String?, done: Int?, total: Int?) 6 fun onSuccess() 7 fun onFailure(error: Exception) 8 } 9