mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Added missing methods to definition file
This commit is contained in:
Vendored
+18
@@ -1165,11 +1165,22 @@ interface SchedulerStatic{
|
||||
*/
|
||||
deleteEvent(id: any);
|
||||
|
||||
/**
|
||||
* removes all blocking sets from the scheduler
|
||||
*/
|
||||
deleteMarkedTimespan();
|
||||
|
||||
/**
|
||||
* removes marking/blocking set by the addMarkedTimespan() and blockTime() methods
|
||||
* @param id the timespan id
|
||||
*/
|
||||
deleteMarkedTimespan(id: string);
|
||||
|
||||
/**
|
||||
* removes marking/blocking set by the addMarkedTimespan() and blockTime() methods
|
||||
* @param configuration for deleting
|
||||
*/
|
||||
deleteMarkedTimespan(config: any);
|
||||
|
||||
/**
|
||||
* deletes a section from the currently active view (if the opened view isn't Timeline in the 'Tree' mode - the method will be ignored)
|
||||
@@ -1212,6 +1223,13 @@ interface SchedulerStatic{
|
||||
* expands the scheduler to the full screen view
|
||||
*/
|
||||
expand();
|
||||
|
||||
/**
|
||||
* filter events that will be displayed on the week view
|
||||
* @param id event-id
|
||||
* @param event event-object
|
||||
*/
|
||||
filter_week(id: any, event: any);
|
||||
|
||||
/**
|
||||
* gives access to the objects of lightbox's sections
|
||||
|
||||
Reference in New Issue
Block a user