Skip to content

Commit

Permalink
HtmlEditor: change mentions dataSource type (#25979) (#25992)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderMoiseev authored Nov 9, 2023
1 parent 04cb8f8 commit de2ed6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/ui/html_editor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ export interface dxHtmlEditorMention {
* @public
* @type Store|DataSource|DataSourceOptions|string|Array<any>|null
*/
dataSource?: DataSourceLike<string> | null;
dataSource?: DataSourceLike<any> | null;
/**
* @docid
* @default "this"
Expand Down
2 changes: 1 addition & 1 deletion ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19222,7 +19222,7 @@ declare module DevExpress.ui {
/**
* [descr:dxHtmlEditorMention.dataSource]
*/
dataSource?: DevExpress.data.DataSource.DataSourceLike<string> | null;
dataSource?: DevExpress.data.DataSource.DataSourceLike<any> | null;
/**
* [descr:dxHtmlEditorMention.displayExpr]
*/
Expand Down

0 comments on commit de2ed6d

Please sign in to comment.