Files
Teodor Dermendjiev f54f71bc60 feat(iOS): update platform declarations
- 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
2018-09-05 11:50:02 +03:00

34 lines
860 B
TypeScript

declare class FPUIActionExtensionContext extends NSExtensionContext {
static alloc(): FPUIActionExtensionContext; // inherited from NSObject
static new(): FPUIActionExtensionContext; // inherited from NSObject
readonly domainIdentifier: string;
completeRequest(): void;
}
declare class FPUIActionExtensionViewController extends UIViewController {
static alloc(): FPUIActionExtensionViewController; // inherited from NSObject
static new(): FPUIActionExtensionViewController; // inherited from NSObject
readonly extensionContext: FPUIActionExtensionContext;
prepareForActionWithIdentifierItemIdentifiers(actionIdentifier: string, itemIdentifiers: NSArray<string> | string[]): void;
prepareForError(error: NSError): void;
}
declare var FPUIErrorDomain: string;
declare const enum FPUIExtensionErrorCode {
UserCancelled = 0,
Failed = 1
}