I'm trying to translate the following Objective-C callback:
typedef void (^MKLocalSearchCompletionHandler)(MKLocalSearchResponse *response, NSError *error); 
...into its equivalent Swift callback:
typealias MKLocalSearchCompletionHandler = (MKLocalSearchResponse!, NSError!) -> Void 
...obvious I lost my way here.
What would be the correct 'shell' or 'structure' of the Swift callback?