mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 00:18:13 -05:00
13 lines
395 B
Objective-C
13 lines
395 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <Cordova/CDVPlugin.h>
|
|
|
|
@interface DeviceDetails : CDVPlugin {
|
|
NSMutableDictionary* callbackIds;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSMutableDictionary* callbackIds;
|
|
|
|
- (void)getDeviceDetails:(NSMutableArray *)arguments withDict:(NSMutableDictionary*)options;
|
|
- (void)getDeviceUUID:(NSMutableArray *)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end |