mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00

- add `objc-x86_64` architecture typings - remove `objc-i386` architecture typings - add `vector` typings - change ``` (method) NSArray<ObjectType>.arrayWithArray<{}>(array: NSArray<{}>): NSArray<{}> ``` to ``` (method) NSArray<ObjectType>.arrayWithArray<string>(array: string[] | NSArray<string>): NSArray<string> ``` * Export typings on for iOS 11 x86_64 * fix: Export typings with fixed NSArray parameters * Export typescript declarations for iOS 11.4 * Update reference path with the new typings folder * feat: Create a script for auto typings generation * Export typings on for iOS 11 x86_64 * fix: Export typings with fixed NSArray parameters * Export typescript declarations for iOS 11.4 * Update reference path with the new typings folder * feat: Create a script for auto typings generation * chore: update .gitignore and .npmignore * fix: Update constructor methods accepting NSArray parameters * chore: Update manual changes flag for typings generation
40 lines
856 B
TypeScript
40 lines
856 B
TypeScript
|
|
interface UNNotificationContentExtension extends NSObjectProtocol {
|
|
|
|
mediaPlayPauseButtonFrame?: CGRect;
|
|
|
|
mediaPlayPauseButtonTintColor?: UIColor;
|
|
|
|
mediaPlayPauseButtonType?: UNNotificationContentExtensionMediaPlayPauseButtonType;
|
|
|
|
didReceiveNotification(notification: UNNotification): void;
|
|
|
|
didReceiveNotificationResponseCompletionHandler?(response: UNNotificationResponse, completion: (p1: UNNotificationContentExtensionResponseOption) => void): void;
|
|
|
|
mediaPause?(): void;
|
|
|
|
mediaPlay?(): void;
|
|
}
|
|
declare var UNNotificationContentExtension: {
|
|
|
|
prototype: UNNotificationContentExtension;
|
|
};
|
|
|
|
declare const enum UNNotificationContentExtensionMediaPlayPauseButtonType {
|
|
|
|
None = 0,
|
|
|
|
Default = 1,
|
|
|
|
Overlay = 2
|
|
}
|
|
|
|
declare const enum UNNotificationContentExtensionResponseOption {
|
|
|
|
DoNotDismiss = 0,
|
|
|
|
Dismiss = 1,
|
|
|
|
DismissAndForwardAction = 2
|
|
}
|