UNPKG

@nodert-win10/windows.applicationmodel.activation

Version:

Use the Windows.ApplicationModel.Activation UWP API directly from Node.js

1,208 lines (917 loc) 36.9 kB
Rect = (function () { var cls = function Rect() { }; return cls; }) (); exports.Rect = Rect; ActivatedEventsContract = (function () { var cls = function ActivatedEventsContract() { }; return cls; }) (); exports.ActivatedEventsContract = ActivatedEventsContract; ActivationCameraSettingsContract = (function () { var cls = function ActivationCameraSettingsContract() { }; return cls; }) (); exports.ActivationCameraSettingsContract = ActivationCameraSettingsContract; ContactActivatedEventsContract = (function () { var cls = function ContactActivatedEventsContract() { }; return cls; }) (); exports.ContactActivatedEventsContract = ContactActivatedEventsContract; WebUISearchActivatedEventsContract = (function () { var cls = function WebUISearchActivatedEventsContract() { }; return cls; }) (); exports.WebUISearchActivatedEventsContract = WebUISearchActivatedEventsContract; _ApplicationExecutionState = function () { this.notRunning = 0; this.running = 1; this.suspended = 2; this.terminated = 3; this.closedByUser = 4; } exports.ApplicationExecutionState = new _ApplicationExecutionState(); _ActivationKind = function () { this.launch = 0; this.search = 1; this.shareTarget = 2; this.file = 3; this.protocol = 4; this.fileOpenPicker = 5; this.fileSavePicker = 6; this.cachedFileUpdater = 7; this.contactPicker = 8; this.device = 9; this.printTaskSettings = 10; this.cameraSettings = 11; this.restrictedLaunch = 12; this.appointmentsProvider = 13; this.contact = 14; this.lockScreenCall = 15; this.voiceCommand = 16; this.lockScreen = 17; this.pickerReturned = 18; this.walletAction = 19; this.pickFileContinuation = 20; this.pickSaveFileContinuation = 21; this.pickFolderContinuation = 22; this.webAuthenticationBrokerContinuation = 23; this.webAccountProvider = 24; this.componentUI = 25; this.protocolForResults = 26; this.toastNotification = 27; this.print3DWorkflow = 28; this.dialReceiver = 29; this.devicePairing = 30; } exports.ActivationKind = new _ActivationKind(); PrintTaskSettingsActivatedEventArgs = (function () { var cls = function PrintTaskSettingsActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.configuration = new Object(); }; return cls; }) (); exports.PrintTaskSettingsActivatedEventArgs = PrintTaskSettingsActivatedEventArgs; Print3DWorkflowActivatedEventArgs = (function () { var cls = function Print3DWorkflowActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.workflow = new Object(); }; return cls; }) (); exports.Print3DWorkflowActivatedEventArgs = Print3DWorkflowActivatedEventArgs; LockScreenCallActivatedEventArgs = (function () { var cls = function LockScreenCallActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.arguments = new String(); this.tileId = new String(); this.callUI = new Object(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.LockScreenCallActivatedEventArgs = LockScreenCallActivatedEventArgs; CameraSettingsActivatedEventArgs = (function () { var cls = function CameraSettingsActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.videoDeviceController = new Object(); this.videoDeviceExtension = new Object(); }; return cls; }) (); exports.CameraSettingsActivatedEventArgs = CameraSettingsActivatedEventArgs; ContactPickerActivatedEventArgs = (function () { var cls = function ContactPickerActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.contactPickerUI = new Object(); }; return cls; }) (); exports.ContactPickerActivatedEventArgs = ContactPickerActivatedEventArgs; ContactCallActivatedEventArgs = (function () { var cls = function ContactCallActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.ContactCallActivatedEventArgs = ContactCallActivatedEventArgs; ContactMessageActivatedEventArgs = (function () { var cls = function ContactMessageActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.ContactMessageActivatedEventArgs = ContactMessageActivatedEventArgs; ContactMapActivatedEventArgs = (function () { var cls = function ContactMapActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.address = new Object(); this.contact = new Object(); }; return cls; }) (); exports.ContactMapActivatedEventArgs = ContactMapActivatedEventArgs; ContactPostActivatedEventArgs = (function () { var cls = function ContactPostActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.ContactPostActivatedEventArgs = ContactPostActivatedEventArgs; ContactVideoCallActivatedEventArgs = (function () { var cls = function ContactVideoCallActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.ContactVideoCallActivatedEventArgs = ContactVideoCallActivatedEventArgs; WalletActionActivatedEventArgs = (function () { var cls = function WalletActionActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.actionId = new String(); this.actionKind = new Number(); this.itemId = new String(); }; return cls; }) (); exports.WalletActionActivatedEventArgs = WalletActionActivatedEventArgs; SplashScreen = (function () { var cls = function SplashScreen() { this.imageLocation = new Object(); }; cls.prototype.addListener = function addListener(eventName, callback){} cls.prototype.removeListener = function removeListener(eventName, callback){} cls.prototype.on = function on(eventName, callback){} cls.prototype.off = function off(eventName, callback){} return cls; }) (); exports.SplashScreen = SplashScreen; IActivatedEventArgs = (function () { var cls = function IActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); }; return cls; }) (); exports.IActivatedEventArgs = IActivatedEventArgs; IPrintTaskSettingsActivatedEventArgs = (function () { var cls = function IPrintTaskSettingsActivatedEventArgs() { this.configuration = new Object(); }; return cls; }) (); exports.IPrintTaskSettingsActivatedEventArgs = IPrintTaskSettingsActivatedEventArgs; IPrint3DWorkflowActivatedEventArgs = (function () { var cls = function IPrint3DWorkflowActivatedEventArgs() { this.workflow = new Object(); }; return cls; }) (); exports.IPrint3DWorkflowActivatedEventArgs = IPrint3DWorkflowActivatedEventArgs; ICameraSettingsActivatedEventArgs = (function () { var cls = function ICameraSettingsActivatedEventArgs() { this.videoDeviceController = new Object(); this.videoDeviceExtension = new Object(); }; return cls; }) (); exports.ICameraSettingsActivatedEventArgs = ICameraSettingsActivatedEventArgs; IContactPickerActivatedEventArgs = (function () { var cls = function IContactPickerActivatedEventArgs() { this.contactPickerUI = new Object(); }; return cls; }) (); exports.IContactPickerActivatedEventArgs = IContactPickerActivatedEventArgs; IContactActivatedEventArgs = (function () { var cls = function IContactActivatedEventArgs() { this.verb = new String(); }; return cls; }) (); exports.IContactActivatedEventArgs = IContactActivatedEventArgs; IContactCallActivatedEventArgs = (function () { var cls = function IContactCallActivatedEventArgs() { this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.IContactCallActivatedEventArgs = IContactCallActivatedEventArgs; IContactMessageActivatedEventArgs = (function () { var cls = function IContactMessageActivatedEventArgs() { this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.IContactMessageActivatedEventArgs = IContactMessageActivatedEventArgs; IContactMapActivatedEventArgs = (function () { var cls = function IContactMapActivatedEventArgs() { this.address = new Object(); this.contact = new Object(); }; return cls; }) (); exports.IContactMapActivatedEventArgs = IContactMapActivatedEventArgs; IContactPostActivatedEventArgs = (function () { var cls = function IContactPostActivatedEventArgs() { this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.IContactPostActivatedEventArgs = IContactPostActivatedEventArgs; IContactVideoCallActivatedEventArgs = (function () { var cls = function IContactVideoCallActivatedEventArgs() { this.contact = new Object(); this.serviceId = new String(); this.serviceUserId = new String(); }; return cls; }) (); exports.IContactVideoCallActivatedEventArgs = IContactVideoCallActivatedEventArgs; IContactsProviderActivatedEventArgs = (function () { var cls = function IContactsProviderActivatedEventArgs() { this.verb = new String(); }; return cls; }) (); exports.IContactsProviderActivatedEventArgs = IContactsProviderActivatedEventArgs; IWalletActionActivatedEventArgs = (function () { var cls = function IWalletActionActivatedEventArgs() { this.actionId = new String(); this.actionKind = new Number(); this.itemId = new String(); }; return cls; }) (); exports.IWalletActionActivatedEventArgs = IWalletActionActivatedEventArgs; IApplicationViewActivatedEventArgs = (function () { var cls = function IApplicationViewActivatedEventArgs() { this.currentlyShownApplicationViewId = new Number(); }; return cls; }) (); exports.IApplicationViewActivatedEventArgs = IApplicationViewActivatedEventArgs; IViewSwitcherProvider = (function () { var cls = function IViewSwitcherProvider() { this.viewSwitcher = new Object(); }; return cls; }) (); exports.IViewSwitcherProvider = IViewSwitcherProvider; IPrelaunchActivatedEventArgs = (function () { var cls = function IPrelaunchActivatedEventArgs() { this.prelaunchActivated = new Boolean(); }; return cls; }) (); exports.IPrelaunchActivatedEventArgs = IPrelaunchActivatedEventArgs; ILaunchActivatedEventArgs = (function () { var cls = function ILaunchActivatedEventArgs() { this.arguments = new String(); this.tileId = new String(); }; return cls; }) (); exports.ILaunchActivatedEventArgs = ILaunchActivatedEventArgs; ILockScreenCallActivatedEventArgs = (function () { var cls = function ILockScreenCallActivatedEventArgs() { this.callUI = new Object(); }; return cls; }) (); exports.ILockScreenCallActivatedEventArgs = ILockScreenCallActivatedEventArgs; LaunchActivatedEventArgs = (function () { var cls = function LaunchActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.arguments = new String(); this.tileId = new String(); this.prelaunchActivated = new Boolean(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.LaunchActivatedEventArgs = LaunchActivatedEventArgs; ISearchActivatedEventArgs = (function () { var cls = function ISearchActivatedEventArgs() { this.language = new String(); this.queryText = new String(); }; return cls; }) (); exports.ISearchActivatedEventArgs = ISearchActivatedEventArgs; ISearchActivatedEventArgsWithLinguisticDetails = (function () { var cls = function ISearchActivatedEventArgsWithLinguisticDetails() { this.linguisticDetails = new Object(); }; return cls; }) (); exports.ISearchActivatedEventArgsWithLinguisticDetails = ISearchActivatedEventArgsWithLinguisticDetails; SearchActivatedEventArgs = (function () { var cls = function SearchActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.language = new String(); this.queryText = new String(); this.linguisticDetails = new Object(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.SearchActivatedEventArgs = SearchActivatedEventArgs; IShareTargetActivatedEventArgs = (function () { var cls = function IShareTargetActivatedEventArgs() { this.shareOperation = new Object(); }; return cls; }) (); exports.IShareTargetActivatedEventArgs = IShareTargetActivatedEventArgs; ShareTargetActivatedEventArgs = (function () { var cls = function ShareTargetActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.shareOperation = new Object(); }; return cls; }) (); exports.ShareTargetActivatedEventArgs = ShareTargetActivatedEventArgs; IFileActivatedEventArgs = (function () { var cls = function IFileActivatedEventArgs() { this.files = new Object(); this.verb = new String(); }; return cls; }) (); exports.IFileActivatedEventArgs = IFileActivatedEventArgs; IFileActivatedEventArgsWithNeighboringFiles = (function () { var cls = function IFileActivatedEventArgsWithNeighboringFiles() { this.neighboringFilesQuery = new Object(); }; return cls; }) (); exports.IFileActivatedEventArgsWithNeighboringFiles = IFileActivatedEventArgsWithNeighboringFiles; IFileActivatedEventArgsWithCallerPackageFamilyName = (function () { var cls = function IFileActivatedEventArgsWithCallerPackageFamilyName() { this.callerPackageFamilyName = new String(); }; return cls; }) (); exports.IFileActivatedEventArgsWithCallerPackageFamilyName = IFileActivatedEventArgsWithCallerPackageFamilyName; FileActivatedEventArgs = (function () { var cls = function FileActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.files = new Object(); this.verb = new String(); this.callerPackageFamilyName = new String(); this.neighboringFilesQuery = new Object(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.FileActivatedEventArgs = FileActivatedEventArgs; IProtocolActivatedEventArgs = (function () { var cls = function IProtocolActivatedEventArgs() { this.uri = new Object(); }; return cls; }) (); exports.IProtocolActivatedEventArgs = IProtocolActivatedEventArgs; IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData = (function () { var cls = function IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData() { this.callerPackageFamilyName = new String(); this.data = new Object(); }; return cls; }) (); exports.IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData = IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData; ProtocolActivatedEventArgs = (function () { var cls = function ProtocolActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.uri = new Object(); this.callerPackageFamilyName = new String(); this.data = new Object(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.ProtocolActivatedEventArgs = ProtocolActivatedEventArgs; IProtocolForResultsActivatedEventArgs = (function () { var cls = function IProtocolForResultsActivatedEventArgs() { this.protocolForResultsOperation = new Object(); }; return cls; }) (); exports.IProtocolForResultsActivatedEventArgs = IProtocolForResultsActivatedEventArgs; ProtocolForResultsActivatedEventArgs = (function () { var cls = function ProtocolForResultsActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.uri = new Object(); this.callerPackageFamilyName = new String(); this.data = new Object(); this.protocolForResultsOperation = new Object(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.ProtocolForResultsActivatedEventArgs = ProtocolForResultsActivatedEventArgs; IFileOpenPickerActivatedEventArgs = (function () { var cls = function IFileOpenPickerActivatedEventArgs() { this.fileOpenPickerUI = new Object(); }; return cls; }) (); exports.IFileOpenPickerActivatedEventArgs = IFileOpenPickerActivatedEventArgs; IFileOpenPickerActivatedEventArgs2 = (function () { var cls = function IFileOpenPickerActivatedEventArgs2() { this.callerPackageFamilyName = new String(); }; return cls; }) (); exports.IFileOpenPickerActivatedEventArgs2 = IFileOpenPickerActivatedEventArgs2; FileOpenPickerActivatedEventArgs = (function () { var cls = function FileOpenPickerActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.fileOpenPickerUI = new Object(); this.callerPackageFamilyName = new String(); }; return cls; }) (); exports.FileOpenPickerActivatedEventArgs = FileOpenPickerActivatedEventArgs; IFileSavePickerActivatedEventArgs = (function () { var cls = function IFileSavePickerActivatedEventArgs() { this.fileSavePickerUI = new Object(); }; return cls; }) (); exports.IFileSavePickerActivatedEventArgs = IFileSavePickerActivatedEventArgs; IFileSavePickerActivatedEventArgs2 = (function () { var cls = function IFileSavePickerActivatedEventArgs2() { this.callerPackageFamilyName = new String(); this.enterpriseId = new String(); }; return cls; }) (); exports.IFileSavePickerActivatedEventArgs2 = IFileSavePickerActivatedEventArgs2; FileSavePickerActivatedEventArgs = (function () { var cls = function FileSavePickerActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.fileSavePickerUI = new Object(); this.callerPackageFamilyName = new String(); this.enterpriseId = new String(); }; return cls; }) (); exports.FileSavePickerActivatedEventArgs = FileSavePickerActivatedEventArgs; ICachedFileUpdaterActivatedEventArgs = (function () { var cls = function ICachedFileUpdaterActivatedEventArgs() { this.cachedFileUpdaterUI = new Object(); }; return cls; }) (); exports.ICachedFileUpdaterActivatedEventArgs = ICachedFileUpdaterActivatedEventArgs; CachedFileUpdaterActivatedEventArgs = (function () { var cls = function CachedFileUpdaterActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.cachedFileUpdaterUI = new Object(); }; return cls; }) (); exports.CachedFileUpdaterActivatedEventArgs = CachedFileUpdaterActivatedEventArgs; IDeviceActivatedEventArgs = (function () { var cls = function IDeviceActivatedEventArgs() { this.deviceInformationId = new String(); this.verb = new String(); }; return cls; }) (); exports.IDeviceActivatedEventArgs = IDeviceActivatedEventArgs; DeviceActivatedEventArgs = (function () { var cls = function DeviceActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.deviceInformationId = new String(); this.verb = new String(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.DeviceActivatedEventArgs = DeviceActivatedEventArgs; IAppointmentsProviderActivatedEventArgs = (function () { var cls = function IAppointmentsProviderActivatedEventArgs() { this.verb = new String(); }; return cls; }) (); exports.IAppointmentsProviderActivatedEventArgs = IAppointmentsProviderActivatedEventArgs; IAppointmentsProviderAddAppointmentActivatedEventArgs = (function () { var cls = function IAppointmentsProviderAddAppointmentActivatedEventArgs() { this.addAppointmentOperation = new Object(); }; return cls; }) (); exports.IAppointmentsProviderAddAppointmentActivatedEventArgs = IAppointmentsProviderAddAppointmentActivatedEventArgs; AppointmentsProviderAddAppointmentActivatedEventArgs = (function () { var cls = function AppointmentsProviderAddAppointmentActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.addAppointmentOperation = new Object(); }; return cls; }) (); exports.AppointmentsProviderAddAppointmentActivatedEventArgs = AppointmentsProviderAddAppointmentActivatedEventArgs; IAppointmentsProviderReplaceAppointmentActivatedEventArgs = (function () { var cls = function IAppointmentsProviderReplaceAppointmentActivatedEventArgs() { this.replaceAppointmentOperation = new Object(); }; return cls; }) (); exports.IAppointmentsProviderReplaceAppointmentActivatedEventArgs = IAppointmentsProviderReplaceAppointmentActivatedEventArgs; AppointmentsProviderReplaceAppointmentActivatedEventArgs = (function () { var cls = function AppointmentsProviderReplaceAppointmentActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.replaceAppointmentOperation = new Object(); }; return cls; }) (); exports.AppointmentsProviderReplaceAppointmentActivatedEventArgs = AppointmentsProviderReplaceAppointmentActivatedEventArgs; IAppointmentsProviderRemoveAppointmentActivatedEventArgs = (function () { var cls = function IAppointmentsProviderRemoveAppointmentActivatedEventArgs() { this.removeAppointmentOperation = new Object(); }; return cls; }) (); exports.IAppointmentsProviderRemoveAppointmentActivatedEventArgs = IAppointmentsProviderRemoveAppointmentActivatedEventArgs; IPickerReturnedActivatedEventArgs = (function () { var cls = function IPickerReturnedActivatedEventArgs() { this.pickerOperationId = new String(); }; return cls; }) (); exports.IPickerReturnedActivatedEventArgs = IPickerReturnedActivatedEventArgs; PickerReturnedActivatedEventArgs = (function () { var cls = function PickerReturnedActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.pickerOperationId = new String(); }; return cls; }) (); exports.PickerReturnedActivatedEventArgs = PickerReturnedActivatedEventArgs; AppointmentsProviderRemoveAppointmentActivatedEventArgs = (function () { var cls = function AppointmentsProviderRemoveAppointmentActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.removeAppointmentOperation = new Object(); }; return cls; }) (); exports.AppointmentsProviderRemoveAppointmentActivatedEventArgs = AppointmentsProviderRemoveAppointmentActivatedEventArgs; IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs = (function () { var cls = function IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs() { this.instanceStartDate = new Date(); this.localId = new String(); this.roamingId = new String(); }; return cls; }) (); exports.IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs = IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs; AppointmentsProviderShowAppointmentDetailsActivatedEventArgs = (function () { var cls = function AppointmentsProviderShowAppointmentDetailsActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.instanceStartDate = new Date(); this.localId = new String(); this.roamingId = new String(); }; return cls; }) (); exports.AppointmentsProviderShowAppointmentDetailsActivatedEventArgs = AppointmentsProviderShowAppointmentDetailsActivatedEventArgs; IAppointmentsProviderShowTimeFrameActivatedEventArgs = (function () { var cls = function IAppointmentsProviderShowTimeFrameActivatedEventArgs() { this.duration = new Number(); this.timeToShow = new Date(); }; return cls; }) (); exports.IAppointmentsProviderShowTimeFrameActivatedEventArgs = IAppointmentsProviderShowTimeFrameActivatedEventArgs; AppointmentsProviderShowTimeFrameActivatedEventArgs = (function () { var cls = function AppointmentsProviderShowTimeFrameActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.verb = new String(); this.duration = new Number(); this.timeToShow = new Date(); }; return cls; }) (); exports.AppointmentsProviderShowTimeFrameActivatedEventArgs = AppointmentsProviderShowTimeFrameActivatedEventArgs; IRestrictedLaunchActivatedEventArgs = (function () { var cls = function IRestrictedLaunchActivatedEventArgs() { this.sharedContext = new Object(); }; return cls; }) (); exports.IRestrictedLaunchActivatedEventArgs = IRestrictedLaunchActivatedEventArgs; RestrictedLaunchActivatedEventArgs = (function () { var cls = function RestrictedLaunchActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.sharedContext = new Object(); }; return cls; }) (); exports.RestrictedLaunchActivatedEventArgs = RestrictedLaunchActivatedEventArgs; ILockScreenActivatedEventArgs = (function () { var cls = function ILockScreenActivatedEventArgs() { this.info = new Object(); }; return cls; }) (); exports.ILockScreenActivatedEventArgs = ILockScreenActivatedEventArgs; LockScreenActivatedEventArgs = (function () { var cls = function LockScreenActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.info = new Object(); }; return cls; }) (); exports.LockScreenActivatedEventArgs = LockScreenActivatedEventArgs; IContinuationActivatedEventArgs = (function () { var cls = function IContinuationActivatedEventArgs() { this.continuationData = new Object(); }; return cls; }) (); exports.IContinuationActivatedEventArgs = IContinuationActivatedEventArgs; IFileOpenPickerContinuationEventArgs = (function () { var cls = function IFileOpenPickerContinuationEventArgs() { this.files = new Object(); }; return cls; }) (); exports.IFileOpenPickerContinuationEventArgs = IFileOpenPickerContinuationEventArgs; FileOpenPickerContinuationEventArgs = (function () { var cls = function FileOpenPickerContinuationEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.continuationData = new Object(); this.files = new Object(); }; return cls; }) (); exports.FileOpenPickerContinuationEventArgs = FileOpenPickerContinuationEventArgs; IFileSavePickerContinuationEventArgs = (function () { var cls = function IFileSavePickerContinuationEventArgs() { this.file = new Object(); }; return cls; }) (); exports.IFileSavePickerContinuationEventArgs = IFileSavePickerContinuationEventArgs; FileSavePickerContinuationEventArgs = (function () { var cls = function FileSavePickerContinuationEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.continuationData = new Object(); this.file = new Object(); }; return cls; }) (); exports.FileSavePickerContinuationEventArgs = FileSavePickerContinuationEventArgs; IFolderPickerContinuationEventArgs = (function () { var cls = function IFolderPickerContinuationEventArgs() { this.folder = new Object(); }; return cls; }) (); exports.IFolderPickerContinuationEventArgs = IFolderPickerContinuationEventArgs; FolderPickerContinuationEventArgs = (function () { var cls = function FolderPickerContinuationEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.continuationData = new Object(); this.folder = new Object(); }; return cls; }) (); exports.FolderPickerContinuationEventArgs = FolderPickerContinuationEventArgs; IWebAuthenticationBrokerContinuationEventArgs = (function () { var cls = function IWebAuthenticationBrokerContinuationEventArgs() { this.webAuthenticationResult = new Object(); }; return cls; }) (); exports.IWebAuthenticationBrokerContinuationEventArgs = IWebAuthenticationBrokerContinuationEventArgs; WebAuthenticationBrokerContinuationEventArgs = (function () { var cls = function WebAuthenticationBrokerContinuationEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.continuationData = new Object(); this.webAuthenticationResult = new Object(); }; return cls; }) (); exports.WebAuthenticationBrokerContinuationEventArgs = WebAuthenticationBrokerContinuationEventArgs; IWebAccountProviderActivatedEventArgs = (function () { var cls = function IWebAccountProviderActivatedEventArgs() { this.operation = new Object(); }; return cls; }) (); exports.IWebAccountProviderActivatedEventArgs = IWebAccountProviderActivatedEventArgs; WebAccountProviderActivatedEventArgs = (function () { var cls = function WebAccountProviderActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.operation = new Object(); }; return cls; }) (); exports.WebAccountProviderActivatedEventArgs = WebAccountProviderActivatedEventArgs; IToastNotificationActivatedEventArgs = (function () { var cls = function IToastNotificationActivatedEventArgs() { this.argument = new String(); this.userInput = new Object(); }; return cls; }) (); exports.IToastNotificationActivatedEventArgs = IToastNotificationActivatedEventArgs; ToastNotificationActivatedEventArgs = (function () { var cls = function ToastNotificationActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.argument = new String(); this.userInput = new Object(); }; return cls; }) (); exports.ToastNotificationActivatedEventArgs = ToastNotificationActivatedEventArgs; IDialReceiverActivatedEventArgs = (function () { var cls = function IDialReceiverActivatedEventArgs() { this.appName = new String(); }; return cls; }) (); exports.IDialReceiverActivatedEventArgs = IDialReceiverActivatedEventArgs; DialReceiverActivatedEventArgs = (function () { var cls = function DialReceiverActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.currentlyShownApplicationViewId = new Number(); this.appName = new String(); this.arguments = new String(); this.tileId = new String(); this.viewSwitcher = new Object(); }; return cls; }) (); exports.DialReceiverActivatedEventArgs = DialReceiverActivatedEventArgs; IDevicePairingActivatedEventArgs = (function () { var cls = function IDevicePairingActivatedEventArgs() { this.deviceInformation = new Object(); }; return cls; }) (); exports.IDevicePairingActivatedEventArgs = IDevicePairingActivatedEventArgs; DevicePairingActivatedEventArgs = (function () { var cls = function DevicePairingActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.deviceInformation = new Object(); }; return cls; }) (); exports.DevicePairingActivatedEventArgs = DevicePairingActivatedEventArgs; IVoiceCommandActivatedEventArgs = (function () { var cls = function IVoiceCommandActivatedEventArgs() { this.result = new Object(); }; return cls; }) (); exports.IVoiceCommandActivatedEventArgs = IVoiceCommandActivatedEventArgs; VoiceCommandActivatedEventArgs = (function () { var cls = function VoiceCommandActivatedEventArgs() { this.kind = new ActivationKind(); this.previousExecutionState = new ApplicationExecutionState(); this.splashScreen = new SplashScreen(); this.result = new Object(); }; return cls; }) (); exports.VoiceCommandActivatedEventArgs = VoiceCommandActivatedEventArgs;