From f7f271b82001c01616a8f8cc4863d915df17ffde Mon Sep 17 00:00:00 2001 From: Michael Aird Date: Tue, 23 May 2017 11:23:13 -0400 Subject: [PATCH] Fixed the method signature Thanks to @DanielRosenwasser for pointing out the mistake in my change. This should now be correct. --- types/kendo-ui/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/kendo-ui/index.d.ts b/types/kendo-ui/index.d.ts index 256398125c..bc7cd464c7 100644 --- a/types/kendo-ui/index.d.ts +++ b/types/kendo-ui/index.d.ts @@ -5408,7 +5408,8 @@ declare namespace kendo.ui { slotByPosition(xPosition: number, yPosition: number): any; slotByElement(element: Element): any; slotByElement(element: JQuery): any; - view(type?: string): kendo.ui.SchedulerView; + view(): kendo.ui.SchedulerView; + view(name: string): void; viewName(): string; }