mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00

Less than 30 erros left, let's hope it still works Added lib.*.d.ts from typescript, removed lib and dom stuff, added by hand XHR, alert etc. .d.ts-es for polyfills Roll back some changes involved in separating UIEvent for dom and ios Test combined dts-es will now use lib, while internally we will not to avoid UIEvent conflict with dom stuff
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
|
|
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>): HKActivityRingView; // inherited from UIAppearance
|
|
|
|
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): HKActivityRingView; // inherited from UIAppearance
|
|
|
|
static appearanceWhenContainedInInstancesOfClasses(containerTypes: NSArray<typeof NSObject>): HKActivityRingView; // inherited from UIAppearance
|
|
|
|
static new(): HKActivityRingView; // inherited from NSObject
|
|
|
|
activitySummary: HKActivitySummary;
|
|
|
|
setActivitySummaryAnimated(activitySummary: HKActivitySummary, animated: boolean): void;
|
|
}
|