From 5d27a1bc8254435f4d9f7b9577426a9f3e0f6b7c Mon Sep 17 00:00:00 2001 From: Jacques Kang Date: Sat, 14 Nov 2015 16:45:26 +0100 Subject: [PATCH] Revert "Add definitions for ngCordova datepicker plugin" This reverts commit d0c14c9c19c4308d9ee4df9ec55675a80a36a13b. --- ng-cordova/datepicker.d.ts | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 ng-cordova/datepicker.d.ts diff --git a/ng-cordova/datepicker.d.ts b/ng-cordova/datepicker.d.ts deleted file mode 100644 index 1a976be65..000000000 --- a/ng-cordova/datepicker.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -// Type definitions for ngCordova datepicker plugin -// Project: https://github.com/VitaliiBlagodir/cordova-plugin-datepicker -// Definitions by: Jacques Kang -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped - -/// - -declare module ngCordova { - - export interface DatePickerOptions { - mode?: string; - date?: Date | string; - minDate?: Date | string; - maxDate?: Date | string; - titleText?: string; - okText?: string; - cancelText?: string; - todayText?: string; - nowText?: string; - is24Hour?: boolean; - androidTheme?: number; - allowOldDates?: boolean; - allowFutureDates?: boolean; - doneButtonLabel?: string; - doneButtonColor?: string; - cancelButtonLabel?: string; - cancelButtonColor?: string; - x?: number; - y?: number; - minuteInterval?: number; - popoverArrowDirection?: string; - locale?: string; - } - - export interface IDatePickerService { - show(options?: DatePickerOptions): ng.IPromise; - } -} \ No newline at end of file