Skip to content

Commit

Permalink
export + const at once. without declare keyword (coz no longer defaul…
Browse files Browse the repository at this point in the history
…t export),
  • Loading branch information
mpreyskurantov committed Nov 10, 2024
1 parent 308dd98 commit 3d16bc8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/devextreme/js/common/core/animation.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export type AnimationConfig = {
* @section utils
* @namespace DevExpress
*/
export declare const fx: {
export const fx: {
/**
* @docid
* @publicName animate(element, config)
Expand Down Expand Up @@ -269,7 +269,7 @@ export interface PositionConfig {
* @namespace DevExpress
* @public
*/
export declare const animationPresets: {
export const animationPresets: {
/**
* @docid
* @publicName applyChanges()
Expand Down
2 changes: 1 addition & 1 deletion packages/devextreme/js/common/core/environment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ declare class DevicesObject {
* @public
*/

export declare const devices: DevicesObject;
export const devices: DevicesObject;

/**
* @docid
Expand Down
6 changes: 3 additions & 3 deletions packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ declare module DevExpress {
/**
* [descr:animationPresets]
*/
export declare const animationPresets: {
export const animationPresets: {
/**
* [descr:animationPresets.applyChanges()]
*/
Expand Down Expand Up @@ -747,7 +747,7 @@ declare module DevExpress {
/**
* [descr:devices]
*/
export declare const devices: DevicesObject;
export const devices: DevicesObject;
/**
* [descr:DevicesObject]
*/
Expand Down Expand Up @@ -952,7 +952,7 @@ declare module DevExpress {
/**
* [descr:fx]
*/
export declare const fx: {
export const fx: {
/**
* [descr:fx.animate(element, config)]
*/
Expand Down

0 comments on commit 3d16bc8

Please sign in to comment.