UNPKG

@nodert-win10/windows.applicationmodel.appointments.appointmentsprovider

Version:

Use the Windows.ApplicationModel.Appointments.AppointmentsProvider UWP API directly from Node.js

140 lines (103 loc) 3.66 kB
AppointmentsProviderLaunchActionVerbs = (function () { var cls = function AppointmentsProviderLaunchActionVerbs() { }; cls.addAppointment = new String(); cls.removeAppointment = new String(); cls.replaceAppointment = new String(); cls.showTimeFrame = new String(); cls.showAppointmentDetails = new String(); return cls; }) (); exports.AppointmentsProviderLaunchActionVerbs = AppointmentsProviderLaunchActionVerbs; AddAppointmentOperation = (function () { var cls = function AddAppointmentOperation() { this.appointmentInformation = new Object(); this.sourcePackageFamilyName = new String(); }; cls.prototype.reportCompleted = function reportCompleted(itemId) { /// <signature> /// <summary>Function summary.</summary> /// <param name="itemId" type="String">A param.</param> /// </signature> } cls.prototype.reportCanceled = function reportCanceled() { /// <signature> /// <summary>Function summary.</summary> /// </signature> } cls.prototype.reportError = function reportError(value) { /// <signature> /// <summary>Function summary.</summary> /// <param name="value" type="String">A param.</param> /// </signature> } cls.prototype.dismissUI = function dismissUI() { /// <signature> /// <summary>Function summary.</summary> /// </signature> } return cls; }) (); exports.AddAppointmentOperation = AddAppointmentOperation; ReplaceAppointmentOperation = (function () { var cls = function ReplaceAppointmentOperation() { this.appointmentId = new String(); this.appointmentInformation = new Object(); this.instanceStartDate = new Date(); this.sourcePackageFamilyName = new String(); }; cls.prototype.reportCompleted = function reportCompleted(itemId) { /// <signature> /// <summary>Function summary.</summary> /// <param name="itemId" type="String">A param.</param> /// </signature> } cls.prototype.reportCanceled = function reportCanceled() { /// <signature> /// <summary>Function summary.</summary> /// </signature> } cls.prototype.reportError = function reportError(value) { /// <signature> /// <summary>Function summary.</summary> /// <param name="value" type="String">A param.</param> /// </signature> } cls.prototype.dismissUI = function dismissUI() { /// <signature> /// <summary>Function summary.</summary> /// </signature> } return cls; }) (); exports.ReplaceAppointmentOperation = ReplaceAppointmentOperation; RemoveAppointmentOperation = (function () { var cls = function RemoveAppointmentOperation() { this.appointmentId = new String(); this.instanceStartDate = new Date(); this.sourcePackageFamilyName = new String(); }; cls.prototype.reportCompleted = function reportCompleted() { /// <signature> /// <summary>Function summary.</summary> /// </signature> } cls.prototype.reportCanceled = function reportCanceled() { /// <signature> /// <summary>Function summary.</summary> /// </signature> } cls.prototype.reportError = function reportError(value) { /// <signature> /// <summary>Function summary.</summary> /// <param name="value" type="String">A param.</param> /// </signature> } cls.prototype.dismissUI = function dismissUI() { /// <signature> /// <summary>Function summary.</summary> /// </signature> } return cls; }) (); exports.RemoveAppointmentOperation = RemoveAppointmentOperation;