Files
Panayot Cankov 1236f66f44 Add npm script that generates ios .d.ts-es from the tests app
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
2016-08-29 09:58:17 +03:00

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>;