mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
fix: CLAuthorizationStatus order and values (#6338)
Based on https://developer.apple.com/documentation/corelocation/clauthorizationstatus
This commit is contained in:
committed by
Alexander Vakrilov
parent
ae6a661ecd
commit
7456a83f3c
@@ -17,12 +17,12 @@ declare const enum CLAuthorizationStatus {
|
||||
kCLAuthorizationStatusRestricted = 1,
|
||||
|
||||
kCLAuthorizationStatusDenied = 2,
|
||||
|
||||
kCLAuthorizationStatusAuthorized = 3,
|
||||
|
||||
kCLAuthorizationStatusAuthorizedAlways = 3,
|
||||
kCLAuthorizationStatusAuthorizedAlways = 4,
|
||||
|
||||
kCLAuthorizationStatusAuthorizedWhenInUse = 4,
|
||||
|
||||
kCLAuthorizationStatusAuthorized = 3
|
||||
kCLAuthorizationStatusAuthorizedWhenInUse = 5
|
||||
}
|
||||
|
||||
declare class CLBeacon extends NSObject implements NSCopying, NSSecureCoding {
|
||||
|
||||
Reference in New Issue
Block a user