Files
Panayot Cankov 299203901e Move platform .d.ts-es to separate plugin folder
Add dev-setup to figure out links

Update development workflow

Update package.json and dts-ios

Update the iOS declarations

grunt is now fine
2016-09-26 11:53:39 +03:00

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>;