Merge pull request #19290 from heatherbooker/allow-date

bootstrap.timepicker: add Date as defaultTime option
This commit is contained in:
Nathan Shively-Sanders
2017-09-07 09:49:52 -07:00
committed by GitHub

View File

@@ -1,13 +1,13 @@
// Type definitions for bootstrap.timepicker
// Project: https://github.com/jdewit/bootstrap-timepicker
// Definitions by: derikwhittaker <https://github.com/derikwhittaker>
// Definitions by: derikwhittaker <https://github.com/derikwhittaker>, Heather Booker <https://github.com/heatherbooker>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
/// <reference types="jquery"/>
interface TimepickerOptions {
defaultTime?: string|boolean;
defaultTime?: string|boolean|Date;
disableFocus?: boolean;
disableMousewheel?: boolean;
explicitMode?: boolean;