diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-09-21 18:11:51 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-09-21 18:11:51 +0200 |
| commit | a810d0248dd9f1099ce15809f8e1e75eedbff8e6 (patch) | |
| tree | 2eeebe5dbbe0e9005b89806a5b9a88d47f54ed1a /StoneIsland/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.h | |
| parent | d906f7303e70adaa75523d8bfc5b46523ccfffa0 (diff) | |
plugins
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.h')
| -rw-r--r-- | StoneIsland/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.h b/StoneIsland/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.h new file mode 100644 index 00000000..0e5d8679 --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.h @@ -0,0 +1,19 @@ +#import <Foundation/Foundation.h> + +#import <Cordova/CDVPlugin.h> + +@interface CordovaHttpPlugin : CDVPlugin + +- (void)setServerTrustMode:(CDVInvokedUrlCommand*)command; +- (void)setClientAuthMode:(CDVInvokedUrlCommand*)command; +- (void)post:(CDVInvokedUrlCommand*)command; +- (void)put:(CDVInvokedUrlCommand*)command; +- (void)patch:(CDVInvokedUrlCommand*)command; +- (void)get:(CDVInvokedUrlCommand*)command; +- (void)delete:(CDVInvokedUrlCommand*)command; +- (void)head:(CDVInvokedUrlCommand*)command; +- (void)options:(CDVInvokedUrlCommand*)command; +- (void)uploadFiles:(CDVInvokedUrlCommand*)command; +- (void)downloadFile:(CDVInvokedUrlCommand*)command; + +@end |
