mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00

Add dev-setup to figure out links Update development workflow Update package.json and dts-ios Update the iOS declarations grunt is now fine
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
|
|
declare class TNSLabel extends UILabel {
|
|
|
|
static alloc(): TNSLabel; // inherited from NSObject
|
|
|
|
static appearance(): TNSLabel; // inherited from UIAppearance
|
|
|
|
static appearanceForTraitCollection(trait: UITraitCollection): TNSLabel; // inherited from UIAppearance
|
|
|
|
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): TNSLabel; // inherited from UIAppearance
|
|
|
|
static appearanceForTraitCollectionWhenContainedInInstancesOfClasses(trait: UITraitCollection, containerTypes: NSArray<typeof NSObject>): TNSLabel; // inherited from UIAppearance
|
|
|
|
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): TNSLabel; // inherited from UIAppearance
|
|
|
|
static appearanceWhenContainedInInstancesOfClasses(containerTypes: NSArray<typeof NSObject>): TNSLabel; // inherited from UIAppearance
|
|
|
|
static new(): TNSLabel; // inherited from NSObject
|
|
|
|
borderThickness: UIEdgeInsets;
|
|
|
|
padding: UIEdgeInsets;
|
|
}
|
|
|
|
declare var TNSWidgetsVersionNumber: number;
|
|
|
|
declare var TNSWidgetsVersionString: interop.Reference<number>;
|