mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
feat(iOS): update platform declarations
- 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
This commit is contained in:

committed by
Vasil Chimev

parent
43f0fd0ffc
commit
f54f71bc60
23
tns-platform-declarations/ios/objc-x86_64/objc!HealthKitUI.d.ts
vendored
Normal file
23
tns-platform-declarations/ios/objc-x86_64/objc!HealthKitUI.d.ts
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
declare class HKActivityRingView extends UIView {
|
||||
|
||||
static alloc(): HKActivityRingView; // inherited from NSObject
|
||||
|
||||
static appearance(): HKActivityRingView; // inherited from UIAppearance
|
||||
|
||||
static appearanceForTraitCollection(trait: UITraitCollection): HKActivityRingView; // inherited from UIAppearance
|
||||
|
||||
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): HKActivityRingView; // inherited from UIAppearance
|
||||
|
||||
static appearanceForTraitCollectionWhenContainedInInstancesOfClasses(trait: UITraitCollection, containerTypes: NSArray<typeof NSObject> | typeof NSObject[]): HKActivityRingView; // inherited from UIAppearance
|
||||
|
||||
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): HKActivityRingView; // inherited from UIAppearance
|
||||
|
||||
static appearanceWhenContainedInInstancesOfClasses(containerTypes: NSArray<typeof NSObject> | typeof NSObject[]): HKActivityRingView; // inherited from UIAppearance
|
||||
|
||||
static new(): HKActivityRingView; // inherited from NSObject
|
||||
|
||||
activitySummary: HKActivitySummary;
|
||||
|
||||
setActivitySummaryAnimated(activitySummary: HKActivitySummary, animated: boolean): void;
|
||||
}
|
Reference in New Issue
Block a user