mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
- 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
23 lines
439 B
TypeScript
23 lines
439 B
TypeScript
|
|
declare class DCDevice extends NSObject {
|
|
|
|
static alloc(): DCDevice; // inherited from NSObject
|
|
|
|
static new(): DCDevice; // inherited from NSObject
|
|
|
|
readonly supported: boolean;
|
|
|
|
static readonly currentDevice: DCDevice;
|
|
|
|
generateTokenWithCompletionHandler(completion: (p1: NSData, p2: NSError) => void): void;
|
|
}
|
|
|
|
declare const enum DCError {
|
|
|
|
UnknownSystemFailure = 0,
|
|
|
|
FeatureUnsupported = 1
|
|
}
|
|
|
|
declare var DCErrorDomain: string;
|