Files
react-native-code-push/windows/UpdateState.cs
Eric Rozell 9396824ba1 style(CodePush): Minor cosmetic changes throughout project (#549)
Includes the following changes:
* UpdateState.Lastest -> UpdateState.Latest
* Added *Async suffix to Task returning methods
* Using DateTimeOffset in MinimumBackgroundListener
* Disposing IDisposable streams in UpdateManager.DownloadPackage
2016-10-04 12:57:30 -07:00

9 lines
119 B
C#

namespace CodePush.ReactNative
{
enum UpdateState
{
Running,
Pending,
Latest
}
}