Files
Vasil Chimev 3e8d6350b9 feat(platform-declarations): generate typings from iOS 13.0 SDK (#7817)
* feat(platform-declarations): generate typings from iOS 13.0 SDK

* fix(platform-declarations): typings generation script

Delete Material Components typings from `tns-platform-declarations`,
they are part of `tns-core-modules` package.

* refactor(platform-declarations): workaround a TypeScript error

Error:
```
tns-platform-declarations/ios/objc-x86_64/objc!OSLog.d.ts(178,15): error TS2417: Class static side 'typeof OSLogEnumerator' incorrectly extends base class static side 'typeof NSEnumerator'.
  Types of property 'alloc' are incompatible.
    Type '() => OSLogEnumerator' is not assignable to type '<ObjectType>() => NSEnumerator<ObjectType>'.
      Type 'OSLogEnumerator' is not assignable to type 'NSEnumerator<ObjectType>'.
        Types of property 'allObjects' are incompatible.
          Type 'NSArray<NSObject>' is not assignable to type 'NSArray<ObjectType>'.
            Type 'NSObject' is not assignable to type 'ObjectType'.
              'NSObject' is assignable to the constraint of type 'ObjectType', but 'ObjectType' could be instantiated with a different subtype of constraint '{}'.
```

References:
https://github.com/Microsoft/TypeScript/issues/17575
https://stackoverflow.com/questions/52518125/workaround-for-accessing-class-type-arguments-in-static-method-in-typescript

* docs(platform-declarations): note a manual step on generating typings

* chore(platform-declarations): exclude ios-typings-prj from transpilation

* refactor(platform-declarations): delete references to MDC types

```
ios/objc-x86_64/objc!QuartzCore.d.ts:676:36 - error TS2304: Cannot find name 'MDCAnimationTimingFunction'.

676  static mdc_functionWithType(type: MDCAnimationTimingFunction): CAMediaTimingFunction;

ios/objc-x86_64/objc!UIKit.d.ts:7717:54 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7717  static mdc_preferredFontForMaterialTextStyle(style: MDCFontTextStyle): UIFont;

ios/objc-x86_64/objc!UIKit.d.ts:7719:53 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7719  static mdc_standardFontForMaterialTextStyle(style: MDCFontTextStyle): UIFont;

ios/objc-x86_64/objc!UIKit.d.ts:7771:63 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7771  mdc_fontSizedForMaterialTextStyleScaledForDynamicType(style: MDCFontTextStyle, scaled: boolean): UIFont;

ios/objc-x86_64/objc!UIKit.d.ts:7794:64 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7794  static mdc_preferredFontDescriptorForMaterialTextStyle(style: MDCFontTextStyle): UIFontDescriptor;

ios/objc-x86_64/objc!UIKit.d.ts:7796:63 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7796  static mdc_standardFontDescriptorForMaterialTextStyle(style: MDCFontTextStyle): UIFontDescriptor;
```
2019-09-19 22:18:08 +03:00

380 lines
10 KiB
TypeScript

declare class IOSurface extends NSObject implements NSSecureCoding {
static alloc(): IOSurface; // inherited from NSObject
static new(): IOSurface; // inherited from NSObject
readonly allocationSize: number;
readonly allowsPixelSizeCasting: boolean;
readonly baseAddress: interop.Pointer | interop.Reference<any>;
readonly bytesPerElement: number;
readonly bytesPerRow: number;
readonly elementHeight: number;
readonly elementWidth: number;
readonly height: number;
readonly inUse: boolean;
readonly localUseCount: number;
readonly pixelFormat: number;
readonly planeCount: number;
readonly seed: number;
readonly width: number;
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
constructor(o: { properties: NSDictionary<string, any>; });
allAttachments(): NSDictionary<string, any>;
attachmentForKey(key: string): any;
baseAddressOfPlaneAtIndex(planeIndex: number): interop.Pointer | interop.Reference<any>;
bytesPerElementOfPlaneAtIndex(planeIndex: number): number;
bytesPerRowOfPlaneAtIndex(planeIndex: number): number;
decrementUseCount(): void;
elementHeightOfPlaneAtIndex(planeIndex: number): number;
elementWidthOfPlaneAtIndex(planeIndex: number): number;
encodeWithCoder(coder: NSCoder): void;
heightOfPlaneAtIndex(planeIndex: number): number;
incrementUseCount(): void;
initWithCoder(coder: NSCoder): this;
initWithProperties(properties: NSDictionary<string, any>): this;
lockWithOptionsSeed(options: IOSurfaceLockOptions, seed: interop.Pointer | interop.Reference<number>): number;
removeAllAttachments(): void;
removeAttachmentForKey(key: string): void;
setAllAttachments(dict: NSDictionary<string, any>): void;
setAttachmentForKey(anObject: any, key: string): void;
setPurgeableOldState(newState: IOSurfacePurgeabilityState, oldState: interop.Pointer | interop.Reference<IOSurfacePurgeabilityState>): number;
unlockWithOptionsSeed(options: IOSurfaceLockOptions, seed: interop.Pointer | interop.Reference<number>): number;
widthOfPlaneAtIndex(planeIndex: number): number;
}
declare function IOSurfaceAlignProperty(property: string, value: number): number;
declare function IOSurfaceAllowsPixelSizeCasting(buffer: any): boolean;
declare const enum IOSurfaceComponentName {
kIOSurfaceComponentNameUnknown = 0,
kIOSurfaceComponentNameAlpha = 1,
kIOSurfaceComponentNameRed = 2,
kIOSurfaceComponentNameGreen = 3,
kIOSurfaceComponentNameBlue = 4,
kIOSurfaceComponentNameLuma = 5,
kIOSurfaceComponentNameChromaRed = 6,
kIOSurfaceComponentNameChromaBlue = 7
}
declare const enum IOSurfaceComponentRange {
kIOSurfaceComponentRangeUnknown = 0,
kIOSurfaceComponentRangeFullRange = 1,
kIOSurfaceComponentRangeVideoRange = 2,
kIOSurfaceComponentRangeWideRange = 3
}
declare const enum IOSurfaceComponentType {
kIOSurfaceComponentTypeUnknown = 0,
kIOSurfaceComponentTypeUnsignedInteger = 1,
kIOSurfaceComponentTypeSignedInteger = 2,
kIOSurfaceComponentTypeFloat = 3
}
declare function IOSurfaceCopyAllValues(buffer: any): NSDictionary<any, any>;
declare function IOSurfaceCopyValue(buffer: any, key: string): any;
declare function IOSurfaceCreate(properties: NSDictionary<any, any>): any;
declare function IOSurfaceCreateMachPort(buffer: any): number;
declare function IOSurfaceDecrementUseCount(buffer: any): void;
declare function IOSurfaceGetAllocSize(buffer: any): number;
declare function IOSurfaceGetBaseAddress(buffer: any): interop.Pointer | interop.Reference<any>;
declare function IOSurfaceGetBaseAddressOfPlane(buffer: any, planeIndex: number): interop.Pointer | interop.Reference<any>;
declare function IOSurfaceGetBitDepthOfComponentOfPlane(buffer: any, planeIndex: number, componentIndex: number): number;
declare function IOSurfaceGetBitOffsetOfComponentOfPlane(buffer: any, planeIndex: number, componentIndex: number): number;
declare function IOSurfaceGetBytesPerElement(buffer: any): number;
declare function IOSurfaceGetBytesPerElementOfPlane(buffer: any, planeIndex: number): number;
declare function IOSurfaceGetBytesPerRow(buffer: any): number;
declare function IOSurfaceGetBytesPerRowOfPlane(buffer: any, planeIndex: number): number;
declare function IOSurfaceGetElementHeight(buffer: any): number;
declare function IOSurfaceGetElementHeightOfPlane(buffer: any, planeIndex: number): number;
declare function IOSurfaceGetElementWidth(buffer: any): number;
declare function IOSurfaceGetElementWidthOfPlane(buffer: any, planeIndex: number): number;
declare function IOSurfaceGetHeight(buffer: any): number;
declare function IOSurfaceGetHeightOfPlane(buffer: any, planeIndex: number): number;
declare function IOSurfaceGetID(buffer: any): number;
declare function IOSurfaceGetNameOfComponentOfPlane(buffer: any, planeIndex: number, componentIndex: number): IOSurfaceComponentName;
declare function IOSurfaceGetNumberOfComponentsOfPlane(buffer: any, planeIndex: number): number;
declare function IOSurfaceGetPixelFormat(buffer: any): number;
declare function IOSurfaceGetPlaneCount(buffer: any): number;
declare function IOSurfaceGetPropertyAlignment(property: string): number;
declare function IOSurfaceGetPropertyMaximum(property: string): number;
declare function IOSurfaceGetRangeOfComponentOfPlane(buffer: any, planeIndex: number, componentIndex: number): IOSurfaceComponentRange;
declare function IOSurfaceGetSeed(buffer: any): number;
declare function IOSurfaceGetSubsampling(buffer: any): IOSurfaceSubsampling;
declare function IOSurfaceGetTypeID(): number;
declare function IOSurfaceGetTypeOfComponentOfPlane(buffer: any, planeIndex: number, componentIndex: number): IOSurfaceComponentType;
declare function IOSurfaceGetUseCount(buffer: any): number;
declare function IOSurfaceGetWidth(buffer: any): number;
declare function IOSurfaceGetWidthOfPlane(buffer: any, planeIndex: number): number;
declare function IOSurfaceIncrementUseCount(buffer: any): void;
declare function IOSurfaceIsInUse(buffer: any): boolean;
declare function IOSurfaceLock(buffer: any, options: IOSurfaceLockOptions, seed: interop.Pointer | interop.Reference<number>): number;
declare const enum IOSurfaceLockOptions {
kIOSurfaceLockReadOnly = 1,
kIOSurfaceLockAvoidSync = 2
}
declare function IOSurfaceLookup(csid: number): any;
declare function IOSurfaceLookupFromMachPort(port: number): any;
declare var IOSurfacePropertyAllocSizeKey: string;
declare var IOSurfacePropertyKeyAllocSize: string;
declare var IOSurfacePropertyKeyBytesPerElement: string;
declare var IOSurfacePropertyKeyBytesPerRow: string;
declare var IOSurfacePropertyKeyCacheMode: string;
declare var IOSurfacePropertyKeyElementHeight: string;
declare var IOSurfacePropertyKeyElementWidth: string;
declare var IOSurfacePropertyKeyHeight: string;
declare var IOSurfacePropertyKeyOffset: string;
declare var IOSurfacePropertyKeyPixelFormat: string;
declare var IOSurfacePropertyKeyPixelSizeCastingAllowed: string;
declare var IOSurfacePropertyKeyPlaneBase: string;
declare var IOSurfacePropertyKeyPlaneBytesPerElement: string;
declare var IOSurfacePropertyKeyPlaneBytesPerRow: string;
declare var IOSurfacePropertyKeyPlaneElementHeight: string;
declare var IOSurfacePropertyKeyPlaneElementWidth: string;
declare var IOSurfacePropertyKeyPlaneHeight: string;
declare var IOSurfacePropertyKeyPlaneInfo: string;
declare var IOSurfacePropertyKeyPlaneOffset: string;
declare var IOSurfacePropertyKeyPlaneSize: string;
declare var IOSurfacePropertyKeyPlaneWidth: string;
declare var IOSurfacePropertyKeyWidth: string;
declare const enum IOSurfacePurgeabilityState {
kIOSurfacePurgeableNonVolatile = 0,
kIOSurfacePurgeableVolatile = 1,
kIOSurfacePurgeableEmpty = 2,
kIOSurfacePurgeableKeepCurrent = 3
}
declare function IOSurfaceRemoveAllValues(buffer: any): void;
declare function IOSurfaceRemoveValue(buffer: any, key: string): void;
declare function IOSurfaceSetPurgeable(buffer: any, newState: number, oldState: interop.Pointer | interop.Reference<number>): number;
declare function IOSurfaceSetValue(buffer: any, key: string, value: any): void;
declare function IOSurfaceSetValues(buffer: any, keysAndValues: NSDictionary<any, any>): void;
declare const enum IOSurfaceSubsampling {
kIOSurfaceSubsamplingUnknown = 0,
kIOSurfaceSubsamplingNone = 1,
kIOSurfaceSubsampling422 = 2,
kIOSurfaceSubsampling420 = 3,
kIOSurfaceSubsampling411 = 4
}
declare function IOSurfaceUnlock(buffer: any, options: IOSurfaceLockOptions, seed: interop.Pointer | interop.Reference<number>): number;
declare var kIOSurfaceAllocSize: string;
declare var kIOSurfaceBytesPerElement: string;
declare var kIOSurfaceBytesPerRow: string;
declare var kIOSurfaceCacheMode: string;
declare const kIOSurfaceCopybackCache: number;
declare const kIOSurfaceCopybackInnerCache: number;
declare const kIOSurfaceDefaultCache: number;
declare var kIOSurfaceElementHeight: string;
declare var kIOSurfaceElementWidth: string;
declare var kIOSurfaceHeight: string;
declare const kIOSurfaceInhibitCache: number;
declare var kIOSurfaceIsGlobal: string;
declare const kIOSurfaceMapCacheShift: number;
declare const kIOSurfaceMapCopybackCache: number;
declare const kIOSurfaceMapCopybackInnerCache: number;
declare const kIOSurfaceMapDefaultCache: number;
declare const kIOSurfaceMapInhibitCache: number;
declare const kIOSurfaceMapWriteCombineCache: number;
declare const kIOSurfaceMapWriteThruCache: number;
declare var kIOSurfaceOffset: string;
declare var kIOSurfacePixelFormat: string;
declare var kIOSurfacePixelSizeCastingAllowed: string;
declare var kIOSurfacePlaneBase: string;
declare var kIOSurfacePlaneBitsPerElement: string;
declare var kIOSurfacePlaneBytesPerElement: string;
declare var kIOSurfacePlaneBytesPerRow: string;
declare var kIOSurfacePlaneComponentBitDepths: string;
declare var kIOSurfacePlaneComponentBitOffsets: string;
declare var kIOSurfacePlaneComponentNames: string;
declare var kIOSurfacePlaneComponentRanges: string;
declare var kIOSurfacePlaneComponentTypes: string;
declare var kIOSurfacePlaneElementHeight: string;
declare var kIOSurfacePlaneElementWidth: string;
declare var kIOSurfacePlaneHeight: string;
declare var kIOSurfacePlaneInfo: string;
declare var kIOSurfacePlaneOffset: string;
declare var kIOSurfacePlaneSize: string;
declare var kIOSurfacePlaneWidth: string;
declare var kIOSurfaceSubsampling: string;
declare var kIOSurfaceWidth: string;
declare const kIOSurfaceWriteCombineCache: number;
declare const kIOSurfaceWriteThruCache: number;