mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

Add dev-setup to figure out links Update development workflow Update package.json and dts-ios Update the iOS declarations grunt is now fine
34 lines
734 B
TypeScript
34 lines
734 B
TypeScript
|
|
declare const enum INUIHostedViewContext {
|
|
|
|
SiriSnippet = 0,
|
|
|
|
MapsCard = 1
|
|
}
|
|
|
|
interface INUIHostedViewControlling extends NSObjectProtocol {
|
|
|
|
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 var IntentsUIVersionNumber: number;
|
|
|
|
declare var IntentsUIVersionString: interop.Reference<number>;
|