Swiftgram/submodules/DeviceProximity/Sources/DeviceProximityManager.h
2019-08-15 14:36:41 +03:00

15 lines
275 B
Objective-C

#import <Foundation/Foundation.h>
@interface DeviceProximityManager : NSObject
+ (DeviceProximityManager * _Nonnull)shared;
- (bool)currentValue;
- (void)setGloballyEnabled:(bool)value;
- (NSInteger)add:(void (^ _Nonnull)(bool))f;
- (void)remove:(NSInteger)index;
@end