style(): spacing and cleanup

This commit is contained in:
Ibby
2016-12-06 08:02:00 -05:00
parent fff1dc45e2
commit e26783b8c6
39 changed files with 228 additions and 92 deletions
+10 -1
View File
@@ -1,19 +1,28 @@
import { Cordova, Plugin } from './plugin';
/**
* @private
*/
export interface CalendarOptions {
id?: string;
firstReminderMinutes?: number;
secondReminderMinutes?: number;
recurrence?: string; // options are: 'daily', 'weekly', 'monthly', 'yearly'
recurrenceInterval?: number; // only used when recurrence is set
recurrenceEndDate?: Date;
calendarName?: string;
calendarId?: number;
url?: string;
}
/**