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

31 lines
649 B
Objective-C

#import <MapKit/MKDirections.h>
#import <PromiseKit/AnyPromise.h>
/**
To import the `MKDirections` category:
use_frameworks!
pod "PromiseKit/MapKit"
And then in your sources:
@import PromiseKit;
*/
@interface MKDirections (PromiseKit)
/**
Begins calculating the requested route information asynchronously.
@return A promise that fulfills with a `MKDirectionsResponse`.
*/
- (AnyPromise *)calculateDirections NS_REFINED_FOR_SWIFT;
/**
Begins calculating the requested travel-time information asynchronously.
@return A promise that fulfills with a `MKETAResponse`.
*/
- (AnyPromise *)calculateETA NS_REFINED_FOR_SWIFT;
@end