Add iOS 10 .d.ts-es

This commit is contained in:
Panayot Cankov
2016-09-12 10:31:14 +03:00
parent 2ee9f2c794
commit e9c7c5a749
78 changed files with 17182 additions and 7657 deletions

View File

@@ -86,6 +86,8 @@ declare class WKInterfaceController extends NSObject {
handleActionWithIdentifierForLocalNotification(identifier: string, localNotification: UILocalNotification): void;
handleActionWithIdentifierForNotification(identifier: string, notification: UNNotification): void;
handleActionWithIdentifierForRemoteNotification(identifier: string, remoteNotification: NSDictionary<any, any>): void;
handleUserActivity(userInfo: NSDictionary<any, any>): void;
@@ -476,6 +478,8 @@ declare class WKUserNotificationInterfaceController extends WKInterfaceControlle
didReceiveLocalNotificationWithCompletion(localNotification: UILocalNotification, completionHandler: (p1: WKUserNotificationInterfaceType) => void): void;
didReceiveNotificationWithCompletion(notification: UNNotification, completionHandler: (p1: WKUserNotificationInterfaceType) => void): void;
didReceiveRemoteNotificationWithCompletion(remoteNotification: NSDictionary<any, any>, completionHandler: (p1: WKUserNotificationInterfaceType) => void): void;
}