add missing return type

closes #172
This commit is contained in:
Ibrahim Hadeed 2016-05-25 00:28:19 -04:00
parent b11da8da0b
commit cc267038e6

View File

@ -271,7 +271,7 @@ export class Calendar {
* @return A Promise that resolves with the list of calendars, or rejects with an error. * @return A Promise that resolves with the list of calendars, or rejects with an error.
*/ */
@Cordova() @Cordova()
static listCalendars() { return; } static listCalendars(): Promise<any> { return; }
/** /**
* Get a list of all future events in the specified calendar. (iOS only) * Get a list of all future events in the specified calendar. (iOS only)