Files
NativeScript/tns-platform-declarations/ios/objc-x86_64/objc!IntentsUI.d.ts
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

47 lines
1.1 KiB
TypeScript

declare const enum INUIHostedViewContext {
SiriSnippet = 0,
MapsCard = 1
}
interface INUIHostedViewControlling extends NSObjectProtocol {
configureViewForParametersOfInteractionInteractiveBehaviorContextCompletion?(parameters: NSSet<INParameter>, interaction: INInteraction, interactiveBehavior: INUIInteractiveBehavior, context: INUIHostedViewContext, completion: (p1: boolean, p2: NSSet<INParameter>, p3: CGSize) => void): void;
configureWithInteractionContextCompletion?(interaction: INInteraction, context: INUIHostedViewContext, completion: (p1: CGSize) => void): void;
}
declare var INUIHostedViewControlling: {
prototype: INUIHostedViewControlling;
};
interface INUIHostedViewSiriProviding extends NSObjectProtocol {
displaysMap?: boolean;
displaysMessage?: boolean;
displaysPaymentTransaction?: boolean;
}
declare var INUIHostedViewSiriProviding: {
prototype: INUIHostedViewSiriProviding;
};
declare const enum INUIInteractiveBehavior {
None = 0,
NextView = 1,
Launch = 2,
GenericAction = 3
}
declare var IntentsUIVersionNumber: number;
declare var IntentsUIVersionString: interop.Reference<number>;