Skip to content

Commit

Permalink
Fix licenseKey declaration (#26051)
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaKhD authored Nov 17, 2023
1 parent b75f82a commit 217e225
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion packages/devextreme/js/common.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ export type GlobalConfig = {
* @default false
*/
shading?: boolean;
licenseKey?: string;
};
/**
* @docid
Expand Down Expand Up @@ -375,6 +374,11 @@ export type GlobalConfig = {
* @public
*/
useLegacyVisibleIndex?: boolean;
/**
* @docid
* @public
*/
licenseKey?: string;
};

/**
Expand Down
5 changes: 4 additions & 1 deletion packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,6 @@ declare module DevExpress.common {
* [descr:GlobalConfig.floatingActionButtonConfig.shading]
*/
shading?: boolean;
licenseKey?: string;
};
/**
* [descr:GlobalConfig.forceIsoDateParsing]
Expand Down Expand Up @@ -1528,6 +1527,10 @@ declare module DevExpress.common {
* [descr:GlobalConfig.useLegacyVisibleIndex]
*/
useLegacyVisibleIndex?: boolean;
/**
* [descr:GlobalConfig.licenseKey]
*/
licenseKey?: string;
};
/**
* [descr:GroupItem]
Expand Down

0 comments on commit 217e225

Please sign in to comment.