All docs
V19.2
24.1
The page you are viewing does not exist in version 24.1.
23.2
The page you are viewing does not exist in version 23.2.
23.1
The page you are viewing does not exist in version 23.1.
22.2
The page you are viewing does not exist in version 22.2.
22.1
The page you are viewing does not exist in version 22.1.
21.2
The page you are viewing does not exist in version 21.2.
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
19.1
18.2
18.1
17.2
A newer version of this page is available. Switch to the current version.

DevExtreme jQuery - Reference TypeScript Definitions

You can find the file with TypeScript definitions for DevExtreme in the DevExtreme zip archive or in the folder where you have installed DevExtreme, which is C:\Program Files (x86)\DevExpress 19.2\DevExtreme\Sources\Lib\ts by default. Add this file to your project. Then, reference this and jQuery TypeScript definition file in your .ts-file.

/// <reference path="TypeScript/jquery.d.ts" />
//  File from the zip archive or from the installation folder...
/// <reference path="TypeScript/dx.all.d.ts" />
//  ...or file from GitHub
/// <reference path="TypeScript/devextreme.d.ts" />

You can also reference TypeScript definitions for Knockout or AngularJS.

/// <reference path="TypeScript/knockout.d.ts" />
/// <reference path="TypeScript/angular.d.ts" />

Along with TypeScript definitions, you need to reference the libraries themselves. See Installation for detailed information.

See Also