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

24 lines
470 B
Objective-C

#import <MapKit/MKMapSnapshotter.h>
#import <PromiseKit/AnyPromise.h>
/**
To import the `MKMapSnapshotter` category:
use_frameworks!
pod "PromiseKit/MapKit"
And then in your sources:
@import PromiseKit;
*/
@interface MKMapSnapshotter (PromiseKit)
/**
Starts generating the snapshot using the options set in this object.
@return A promise that fulfills with the generated `MKMapSnapshot` object.
*/
- (AnyPromise *)start NS_REFINED_FOR_SWIFT;
@end