Skip to content

Commit 703c181

Browse files
Fix after review
1 parent f1734b7 commit 703c181

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/devextreme/js/ui/scheduler.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ export type AppointmentFormProperties = FormProperties & {
9696
/** @public */
9797
export type ViewType = 'agenda' | 'day' | 'month' | 'timelineDay' | 'timelineMonth' | 'timelineWeek' | 'timelineWorkWeek' | 'week' | 'workWeek';
9898
/** @public */
99+
export type SchedulerScrollToAlign = 'start' | 'center';
100+
/** @public */
99101
export type SchedulerPredefinedToolbarItem = 'today' | 'dateNavigator' | 'viewSwitcher';
100102
/** @public */
101103
export type SchedulerPredefinedDateNavigatorItem = 'prev' | 'next' | 'dateInterval';
@@ -1314,13 +1316,13 @@ export default class dxScheduler extends Widget<dxSchedulerOptions> {
13141316
* @param2 options:Object|undefined
13151317
* @param2_field group:Object|undefined
13161318
* @param2_field allDay:Boolean|undefined
1317-
* @param2_field align:Enums.SchedulerScrollToAlign|undefined
1319+
* @param2_field alignInView:Enums.SchedulerScrollToAlign|undefined
13181320
* @public
13191321
*/
13201322
scrollTo(date: Date, options?: {
13211323
group?: object;
13221324
allDay?: boolean;
1323-
alignInView?: 'start' | 'center';
1325+
alignInView?: SchedulerScrollToAlign;
13241326
}): void;
13251327
/**
13261328
* @docid

0 commit comments

Comments
 (0)