docs(): massive updates

This commit is contained in:
mhartington
2016-07-08 15:19:13 -04:00
parent ba20dbe590
commit 9eb63a0d74
10 changed files with 67 additions and 53 deletions
+2 -3
View File
@@ -77,7 +77,6 @@ export interface DatePickerOptions {
* import {DatePicker} from 'ionic-native';
*
*
*
* DatePicker.show({
* date: new Date(),
* mode: 'date'
@@ -97,10 +96,10 @@ export class DatePicker {
/**
* Shows the date and/or time picker dialog(s)
* @param options
* @param {DatePickerOptions} options Options for the date picker.
* @returns {Promise<Date>} Returns a promise that resolves with the picked date and/or time, or rejects with an error.
*/
@Cordova()
static show(options: DatePickerOptions): Promise<Date> { return; }
}
}