Files
Jot/Carthage/Checkouts/PromiseKit/Extensions/Social/Sources/SLRequest+AnyPromise.h
James Griffin be7b6b5881 Add PromiseKit dependency
- Added PromiseKit dependency
2018-11-15 22:12:39 -04:00

37 lines
671 B
Objective-C

//
// Created by merowing on 09/05/2014.
//
//
//
#import <PromiseKit/AnyPromise.h>
#import <Social/SLRequest.h>
/**
To import the `SLRequest` category:
use_frameworks!
pod "PromiseKit/Social"
And then in your sources:
@import PromiseKit;
*/
@interface SLRequest (PromiseKit)
/**
Performs the request asynchronously.
@return A promise that fulfills with three parameters:
1) The response decoded as JSON.
2) The `NSHTTPURLResponse`.
3) The raw `NSData` response.
@warning *Note* If PromiseKit determines the response is not JSON, the first
parameter will instead be plain `NSData`.
*/
- (AnyPromise *)promise NS_REFINED_FOR_SWIFT;
@end