Skip to content

Commit

Permalink
file management providers options: wrap re-exported deprecated types …
Browse files Browse the repository at this point in the history
…with namespace aka module
  • Loading branch information
mpreyskurantov committed Nov 10, 2024
1 parent 94d0f03 commit 4bfd898
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
/**
* @public
* @deprecated Use CustomFileSystemProviderOptions from /common/file_management instead
* @namespace DevExpress.fileManagement.CustomFileSystemProvider
*/
export type Options = CustomFileSystemProviderOptions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
/**
* @public
* @deprecated Use ObjectFileSystemProviderOptions from /common/file_management instead
* @namespace DevExpress.fileManagement.ObjectFileSystemProvider
*/
export type Options = ObjectFileSystemProviderOptions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
/**
* @public
* @deprecated Use RemoteFileSystemProviderOptions from /common/file_management instead
* @namespace DevExpress.fileManagement.RemoteFileSystemProvider
*/
export type Options = RemoteFileSystemProviderOptions;

Expand Down
32 changes: 18 additions & 14 deletions packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7570,20 +7570,6 @@ declare module DevExpress.fileManagement {
*/
itemsExpr?: string | Function;
}
/**
* @deprecated Use CustomFileSystemProviderOptions from /common/file_management instead
*/
export type Options = CustomFileSystemProviderOptions;
/**
* @public
* @deprecated Use ObjectFileSystemProviderOptions from /common/file_management instead
*/
export type Options = ObjectFileSystemProviderOptions;
/**
* @public
* @deprecated Use RemoteFileSystemProviderOptions from /common/file_management instead
*/
export type Options = RemoteFileSystemProviderOptions;
/**
* [descr:RemoteFileSystemProvider]
*/
Expand Down Expand Up @@ -7651,6 +7637,24 @@ declare module DevExpress.fileManagement {
chunkIndex: number;
}
}
declare module DevExpress.fileManagement.CustomFileSystemProvider {
/**
* @deprecated Use CustomFileSystemProviderOptions from /common/file_management instead
*/
export type Options = CustomFileSystemProviderOptions;
}
declare module DevExpress.fileManagement.ObjectFileSystemProvider {
/**
* @deprecated Use ObjectFileSystemProviderOptions from /common/file_management instead
*/
export type Options = ObjectFileSystemProviderOptions;
}
declare module DevExpress.fileManagement.RemoteFileSystemProvider {
/**
* @deprecated Use RemoteFileSystemProviderOptions from /common/file_management instead
*/
export type Options = RemoteFileSystemProviderOptions;
}
declare module DevExpress.localization {
/**
* [descr:localization.formatDate(value, format)]
Expand Down

0 comments on commit 4bfd898

Please sign in to comment.