UNPKG

237 BPlain TextView Raw
1import ExpoModulesCore
2
3enum BackgroundFetchStatus: Int, Enumerable {
4 case denied = 1
5 case restricted = 2
6 case available = 3
7}
8
9enum BackgroundFetchResult: Int, Enumerable {
10 case noData = 1
11 case newData = 2
12 case failed = 3
13}