Merge pull request #2952 from adidahiya/pickadate

Update pickadate.d.ts typing for container option
This commit is contained in:
Masahiro Wakame 2014-10-10 12:27:30 +09:00
commit aeedcbf5e5

View File

@ -141,8 +141,8 @@ declare module Pickadate {
// Disable dates (elements can be Dates, [YEAR, MONTH, DATE] arrays, or integers of the week)
disable?: any[];
// Root container selector
container?: string
// Root container selector (string) or element (JQuery)
container?: any;
// Events
onStart?: () => void;
@ -238,8 +238,8 @@ declare module Pickadate {
// Disable dates (elements can be Dates, [YEAR, MONTH, DATE] arrays, or integers of the week)
disable?: any[];
// Root container selector
container?: string
// Root container selector (string) or element (JQuery)
container?: any;
// Events
onStart?: () => void;