Skip to content

Commit

Permalink
fix(bindables): updated @bindable's
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenVinke committed Sep 23, 2017
1 parent b9b0d8a commit bd6f407
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
32 changes: 18 additions & 14 deletions build/tasks/kendo-ui.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
// Type definitions for Kendo UI Professional v2017.2.621
// Project: http://www.telerik.com/kendo-ui
// Definitions by: Telerik <https://github.com/telerik/>
// Definitions by: Telerik <https://github.com/telerik>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

/// <reference types="jquery" />

declare namespace kendo {
function culture(): {
Expand Down Expand Up @@ -873,12 +877,12 @@ declare namespace kendo.data {
}

interface DataSourceTransport {
create?: DataSourceTransportCreate;
destroy?: DataSourceTransportDestroy;
create?: DataSourceTransportCreate | ((options: DataSourceTransportOptions) => void);
destroy?: DataSourceTransportDestroy | ((options: DataSourceTransportOptions) => void);
push?: Function;
read?: DataSourceTransportRead;
signalr?: DataSourceTransportSignalr;
update?: DataSourceTransportUpdate;
read?: DataSourceTransportRead | ((options: DataSourceTransportOptions) => void);
signalr?: DataSourceTransportSignalr | ((options: DataSourceTransportOptions) => void);
update?: DataSourceTransportUpdate | ((options: DataSourceTransportOptions) => void);

parameterMap?(data: DataSourceTransportParameterMapData, type: string): any;
}
Expand Down Expand Up @@ -1559,11 +1563,11 @@ declare namespace kendo.ui {

}

interface AlertMessages {
interface AlertMessages extends DialogMessages {
okText?: string;
}

interface AlertOptions {
interface AlertOptions extends DialogOptions {
name?: string;
messages?: AlertMessages;
}
Expand Down Expand Up @@ -2077,12 +2081,12 @@ declare namespace kendo.ui {

}

interface ConfirmMessages {
interface ConfirmMessages extends DialogMessages {
okText?: string;
cancel?: string;
}

interface ConfirmOptions {
interface ConfirmOptions extends DialogOptions {
name?: string;
messages?: ConfirmMessages;
}
Expand Down Expand Up @@ -5475,12 +5479,12 @@ declare namespace kendo.ui {

}

interface PromptMessages {
interface PromptMessages extends DialogMessages {
okText?: string;
cancel?: string;
}

interface PromptOptions {
interface PromptOptions extends DialogOptions {
name?: string;
messages?: PromptMessages;
}
Expand Down Expand Up @@ -7021,7 +7025,7 @@ declare namespace kendo.ui {
name?: string;
autoHide?: boolean;
animation?: boolean|TooltipAnimation;
content?: TooltipContent;
content?: string | TooltipContent | ((e: any) => string);
callout?: boolean;
filter?: string;
iframe?: boolean;
Expand Down Expand Up @@ -20190,4 +20194,4 @@ interface JQuery {
kendoWindow(options: kendo.ui.WindowOptions): JQuery;
data(key: "kendoWindow"): kendo.ui.Window;

}
}

0 comments on commit bd6f407

Please sign in to comment.